forked from dcj/ansible-kubeadm-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster-destroy.yml
110 lines (85 loc) · 2.2 KB
/
cluster-destroy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
- hosts: localhost
- hosts: "{{ cluster_name }}_node"
become: true
vars:
kubeadm_packages:
- docker.io
- kubelet
- kubeadm
- kubectl
- kubernetes-cni
tasks:
- name: Reset kubeadm
command: /usr/bin/kubeadm reset
async: 45
poll: 0
ignore_errors: true
- name: Remove packages
apt:
name: '{{ kubeadm_packages | list }}'
state: absent
update_cache: true
ignore_errors: true
when: ansible_distribution == 'Ubuntu'
- name: Remove kubernetes repository (apt)
file:
path: /etc/apt/sources.list.d/kubernetes.list
state: absent
when: ansible_distribution == 'Ubuntu'
- name: Update apt cache
apt:
update_cache: true
- name: Remove immutable bit on /var/lib/kubelet
command: chattr -Ri /var/lib/kubelet/
ignore_errors: true
when: ansible_distribution == 'Ubuntu'
- name: Remove kubernetes directorys
file:
path: '{{ item }}'
state: absent
with_items:
- /etc/kubernetes
- /var/lib/kubelet
- /run/kubernetes
ignore_errors: true
- hosts: "{{ cluster_name }}_master"
become: true
vars:
kubeadm_packages:
- docker.io
- kubelet
- kubeadm
- kubectl
- kubernetes-cni
tasks:
- name: Reset kubeadm
command: /usr/bin/kubeadm reset
async: 45
poll: 0
ignore_errors: true
- name: Remove packages
apt:
name: '{{ kubeadm_packages | list }}'
state: absent
update_cache: true
ignore_errors: true
when: ansible_distribution == 'Ubuntu'
- name: Remove kubernetes repository (apt)
file:
path: /etc/apt/sources.list.d/kubernetes.list
state: absent
when: ansible_distribution == 'Ubuntu'
- name: Update apt cache
apt:
update_cache: true
- name: Remove kubernetes directorys
file:
path: '{{ item }}'
state: absent
with_items:
- /etc/kubernetes
- /var/lib/kubelet
- /run/kubernetes
- /var/lib/etcd
ignore_errors: true