k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
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.
32 lines
726 B
32 lines
726 B
---
|
|
|
|
- hosts: all
|
|
vars:
|
|
ansible_ssh_pipelining: true
|
|
gather_facts: true
|
|
|
|
- hosts: etcd:k8s-cluster:vault:calico-rr
|
|
vars_prompt:
|
|
name: "delete_nodes_confirmation"
|
|
prompt: "Are you sure you want to delete nodes state? Type 'yes' to delete nodes."
|
|
default: "no"
|
|
private: no
|
|
|
|
pre_tasks:
|
|
- name: check confirmation
|
|
fail:
|
|
msg: "Delete nodes confirmation failed"
|
|
when: delete_nodes_confirmation != "yes"
|
|
|
|
- hosts: kube-master
|
|
roles:
|
|
- { role: remove-node/pre-remove, tags: pre-remove }
|
|
|
|
- hosts: kube-node
|
|
roles:
|
|
- { role: kubespray-defaults }
|
|
- { role: reset, tags: reset }
|
|
|
|
- hosts: kube-master
|
|
roles:
|
|
- { role: remove-node/post-remove, tags: post-remove }
|