Ignore deleting nodes that are not in cluster (#9244)

This commit is contained in:
Ho Kim 2022-09-06 11:50:54 +09:00 committed by GitHub
parent 09d9bc910e
commit ad7cefa352
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,8 @@
- name: remove-node | Delete node
command: "{{ kubectl }} delete node {{ kube_override_hostname|default(inventory_hostname) }}"
delegate_to: "{{ groups['kube_control_plane']|first }}"
when: inventory_hostname in groups['k8s_cluster']
# ignore servers that are not nodes
when: inventory_hostname in groups['k8s_cluster'] and inventory_hostname in nodes.stdout_lines
retries: "{{ delete_node_retries }}"
# Sometimes the api-server can have a short window of indisponibility when we delete a master node
delay: "{{ delete_node_delay_seconds }}"