9cef20187c
The post-remove action fails during the kubectl delete node action because with rc: 2, command not found. The kubectl is not in the system PATH and the full path to the binary is required
9 lines
246 B
YAML
9 lines
246 B
YAML
---
|
|
|
|
- name: Delete node
|
|
command: "{{ bin_dir}}/kubectl delete node {{ item }}"
|
|
with_items:
|
|
- "{{ node.split(',') | default(groups['kube-node']) }}"
|
|
delegate_to: "{{ groups['kube-master']|first }}"
|
|
run_once: true
|
|
ignore_errors: yes
|