2018-03-05 07:02:47 +00:00
|
|
|
---
|
2020-04-22 20:33:44 +00:00
|
|
|
- name: Check ansible version
|
|
|
|
import_playbook: ansible_version.yml
|
2018-03-05 07:02:47 +00:00
|
|
|
|
2020-07-22 07:28:05 +00:00
|
|
|
- hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
tags: always
|
|
|
|
tasks:
|
|
|
|
- name: "Set up proxy environment"
|
|
|
|
set_fact:
|
|
|
|
proxy_env:
|
|
|
|
http_proxy: "{{ http_proxy | default ('') }}"
|
|
|
|
HTTP_PROXY: "{{ http_proxy | default ('') }}"
|
|
|
|
https_proxy: "{{ https_proxy | default ('') }}"
|
|
|
|
HTTPS_PROXY: "{{ https_proxy | default ('') }}"
|
|
|
|
no_proxy: "{{ no_proxy | default ('') }}"
|
|
|
|
NO_PROXY: "{{ no_proxy | default ('') }}"
|
|
|
|
no_log: true
|
|
|
|
|
2018-11-10 16:51:24 +00:00
|
|
|
- hosts: "{{ node | default('etcd:k8s-cluster:calico-rr') }}"
|
2019-08-07 11:46:50 +00:00
|
|
|
gather_facts: no
|
2018-03-05 07:02:47 +00:00
|
|
|
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
|
2019-08-07 11:46:50 +00:00
|
|
|
gather_facts: no
|
2018-03-05 07:02:47 +00:00
|
|
|
roles:
|
2019-07-05 10:28:34 +00:00
|
|
|
- { role: kubespray-defaults }
|
2020-08-05 08:52:28 +00:00
|
|
|
- { role: bootstrap-os, tags: bootstrap-os }
|
2018-03-05 07:02:47 +00:00
|
|
|
- { role: remove-node/pre-remove, tags: pre-remove }
|
|
|
|
|
2018-06-29 05:15:29 +00:00
|
|
|
- hosts: "{{ node | default('kube-node') }}"
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: no
|
2018-03-05 07:02:47 +00:00
|
|
|
roles:
|
2018-05-10 04:40:59 +00:00
|
|
|
- { role: kubespray-defaults }
|
2020-08-05 08:52:28 +00:00
|
|
|
- { role: bootstrap-os, tags: bootstrap-os }
|
2020-06-09 12:37:17 +00:00
|
|
|
- { role: remove-node/remove-etcd-node}
|
2019-08-07 11:46:50 +00:00
|
|
|
- { role: reset, tags: reset, when: reset_nodes|default(True) }
|
2018-03-05 07:02:47 +00:00
|
|
|
|
2019-08-07 11:46:50 +00:00
|
|
|
# Currently cannot remove first master or etcd
|
2020-05-08 22:31:51 +00:00
|
|
|
- hosts: "{{ node | default('kube-master[1:]:etcd[1:]') }}"
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: no
|
2018-03-05 07:02:47 +00:00
|
|
|
roles:
|
2019-07-05 10:28:34 +00:00
|
|
|
- { role: kubespray-defaults }
|
2020-08-05 08:52:28 +00:00
|
|
|
- { role: bootstrap-os, tags: bootstrap-os}
|
2018-03-05 07:02:47 +00:00
|
|
|
- { role: remove-node/post-remove, tags: post-remove }
|