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.

5 lines
283 B

  1. ---
  2. - name: Uncordon node
  3. command: "{{ bin_dir }}/kubectl uncordon {{ inventory_hostname }}"
  4. delegate_to: "{{ groups['kube-master'][0] }}"
  5. when: (needs_cordoning|default(false)) and ( {%- if inventory_hostname in groups['kube-node'] -%} true {%- else -%} false {%- endif -%} )