parent
668bbe0528
commit
e9f4ff227e
1 changed files with 4 additions and 1 deletions
|
@ -238,7 +238,10 @@
|
||||||
|
|
||||||
# FIXME(mattymo): from docs: If you don't want to taint your control-plane node, set this field to an empty slice, i.e. `taints: {}` in the YAML file.
|
# FIXME(mattymo): from docs: If you don't want to taint your control-plane node, set this field to an empty slice, i.e. `taints: {}` in the YAML file.
|
||||||
- name: kubeadm | Remove taint for master with node role
|
- name: kubeadm | Remove taint for master with node role
|
||||||
command: "{{ bin_dir }}/kubectl --kubeconfig {{ kube_config_dir }}/admin.conf taint node {{ inventory_hostname }} node-role.kubernetes.io/master:NoSchedule- node-role.kubernetes.io/control-plane:NoSchedule-"
|
command: "{{ bin_dir }}/kubectl --kubeconfig {{ kube_config_dir }}/admin.conf taint node {{ inventory_hostname }} {{ item }}"
|
||||||
delegate_to: "{{ groups['kube-master'] | first }}"
|
delegate_to: "{{ groups['kube-master'] | first }}"
|
||||||
|
with_items:
|
||||||
|
- "node-role.kubernetes.io/master:NoSchedule-"
|
||||||
|
- "node-role.kubernetes.io/control-plane:NoSchedule-"
|
||||||
when: inventory_hostname in groups['kube-node']
|
when: inventory_hostname in groups['kube-node']
|
||||||
failed_when: false
|
failed_when: false
|
||||||
|
|
Loading…
Reference in a new issue