a790935d02
no_proxy is a pain to get right, and having proxy variables present causes issues (k8s components get proxy configuration after upgrade, see #7100) It's better to only configure what require proxy: - the runtime (containerd/docker/crio) - the package manager + apt_key - the download tasks Tested with the following clusters - 4 CentOS 8 nodes - 1 Ubuntu 20.04 node Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
---
|
|
- name: Check ansible version
|
|
import_playbook: ansible_version.yml
|
|
|
|
- hosts: "{{ node | default('etcd:k8s-cluster:calico-rr') }}"
|
|
gather_facts: no
|
|
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[0]
|
|
gather_facts: no
|
|
roles:
|
|
- { role: kubespray-defaults }
|
|
- { role: bootstrap-os, tags: bootstrap-os }
|
|
- { role: remove-node/pre-remove, tags: pre-remove }
|
|
|
|
- hosts: "{{ node | default('kube-node') }}"
|
|
gather_facts: no
|
|
roles:
|
|
- { role: kubespray-defaults, when: reset_nodes|default(True)|bool }
|
|
- { role: bootstrap-os, tags: bootstrap-os, when: reset_nodes|default(True)|bool }
|
|
- { role: remove-node/remove-etcd-node }
|
|
- { role: reset, tags: reset, when: reset_nodes|default(True)|bool }
|
|
|
|
# Currently cannot remove first master or etcd
|
|
- hosts: "{{ node | default('kube-master[1:]:etcd[1:]') }}"
|
|
gather_facts: no
|
|
roles:
|
|
- { role: kubespray-defaults, when: reset_nodes|default(True)|bool }
|
|
- { role: bootstrap-os, tags: bootstrap-os, when: reset_nodes|default(True)|bool }
|
|
- { role: remove-node/post-remove, tags: post-remove }
|