Merge pull request #1391 from Abdelsalam-Abbas/master

Uncodron Masters which have scheduling Enabled
This commit is contained in:
Spencer Smith
2017-07-06 09:06:02 -04:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

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