8b151d12b9
* Adding yaml linter to ci check * Minor linting fixes from yamllint * Changing CI to install python pkgs from requirements.txt - adding in a secondary requirements.txt for tests - moving yamllint to tests requirements
5 lines
283 B
YAML
5 lines
283 B
YAML
---
|
|
- name: Uncordon node
|
|
command: "{{ bin_dir }}/kubectl uncordon {{ inventory_hostname }}"
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
|
when: (needs_cordoning|default(false)) and ( {%- if inventory_hostname in groups['kube-node'] -%} true {%- else -%} false {%- endif -%} )
|