Ensure taint configuration for secondary control-plane nodes (#8363)

This commit is contained in:
Unai Arríen 2022-01-06 08:56:28 +01:00 committed by GitHub
parent c11e4ba9a7
commit 92abf26d29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,3 +19,10 @@ controlPlane:
nodeRegistration:
name: {{ kube_override_hostname|default(inventory_hostname) }}
criSocket: {{ cri_socket }}
{% if inventory_hostname in groups['kube_control_plane'] and inventory_hostname not in groups['kube_node'] %}
taints:
- effect: NoSchedule
key: node-role.kubernetes.io/master
{% else %}
taints: []
{% endif %}