Ensure taint configuration for secondary control-plane nodes (#8363)
parent
c11e4ba9a7
commit
92abf26d29
|
@ -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 %}
|
Loading…
Reference in New Issue