You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
675 B

  1. ---
  2. kubeadm_patches_dir: "{{ kube_config_dir }}/patches"
  3. kubeadm_patches: []
  4. # See https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/control-plane-flags/#patches
  5. # Correspondance with this link
  6. # patchtype = type
  7. # target = target
  8. # suffix -> managed automatically
  9. # extension -> always "yaml"
  10. # kubeadm_patches:
  11. # - target: kube-apiserver|kube-controller-manager|kube-scheduler|etcd|kubeletconfiguration
  12. # type: strategic(default)|json|merge
  13. # patch:
  14. # metadata:
  15. # annotations:
  16. # example.com/test: "true"
  17. # labels:
  18. # example.com/prod_level: "{{ prod_level }}"
  19. # - ...
  20. # Patches are applied in the order they are specified.