2016-12-07 16:36:24 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: reset | stop services
|
2017-02-17 21:22:34 +00:00
|
|
|
service:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: stopped
|
2016-12-07 16:36:24 +00:00
|
|
|
with_items:
|
|
|
|
- kubelet
|
|
|
|
- etcd
|
|
|
|
failed_when: false
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['services']
|
2016-12-07 16:36:24 +00:00
|
|
|
|
|
|
|
- name: reset | remove services
|
2016-12-09 15:33:10 +00:00
|
|
|
file:
|
|
|
|
path: "/etc/systemd/system/{{ item }}.service"
|
|
|
|
state: absent
|
2016-12-07 16:36:24 +00:00
|
|
|
with_items:
|
|
|
|
- kubelet
|
|
|
|
- etcd
|
|
|
|
register: services_removed
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['services']
|
2016-12-07 16:36:24 +00:00
|
|
|
|
2016-12-21 16:18:11 +00:00
|
|
|
- name: reset | remove docker dropins
|
|
|
|
file:
|
|
|
|
path: "/etc/systemd/system/docker.service.d/{{ item }}"
|
|
|
|
state: absent
|
|
|
|
with_items:
|
|
|
|
- docker-dns.conf
|
|
|
|
- docker-options.conf
|
|
|
|
register: docker_dropins_removed
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['docker']
|
2016-12-21 16:18:11 +00:00
|
|
|
|
2016-12-07 16:36:24 +00:00
|
|
|
- name: reset | systemctl daemon-reload
|
|
|
|
command: systemctl daemon-reload
|
2016-12-21 16:18:11 +00:00
|
|
|
when: services_removed.changed or docker_dropins_removed.changed
|
2016-12-07 16:36:24 +00:00
|
|
|
|
|
|
|
- name: reset | remove all containers
|
2016-12-23 14:44:44 +00:00
|
|
|
shell: "{{ docker_bin_dir }}/docker ps -aq | xargs -r docker rm -fv"
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['docker']
|
2016-12-07 16:36:24 +00:00
|
|
|
|
2016-12-21 16:18:11 +00:00
|
|
|
- name: reset | restart docker if needed
|
2017-02-17 21:22:34 +00:00
|
|
|
service:
|
|
|
|
name: docker
|
|
|
|
state: restarted
|
2016-12-21 16:18:11 +00:00
|
|
|
when: docker_dropins_removed.changed
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['docker']
|
2016-12-21 16:18:11 +00:00
|
|
|
|
2016-12-07 16:36:24 +00:00
|
|
|
- name: reset | gather mounted kubelet dirs
|
2016-12-13 13:21:24 +00:00
|
|
|
shell: mount | grep /var/lib/kubelet | awk '{print $3}' | tac
|
2017-02-06 18:13:21 +00:00
|
|
|
check_mode: no
|
2016-12-07 16:36:24 +00:00
|
|
|
register: mounted_dirs
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['mounts']
|
2016-12-07 16:36:24 +00:00
|
|
|
|
|
|
|
- name: reset | unmount kubelet dirs
|
|
|
|
command: umount {{item}}
|
2016-12-13 13:21:24 +00:00
|
|
|
with_items: '{{ mounted_dirs.stdout_lines }}'
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['mounts']
|
2016-12-07 16:36:24 +00:00
|
|
|
|
2017-03-21 09:13:54 +00:00
|
|
|
- name: flush iptables
|
|
|
|
iptables:
|
|
|
|
flush: yes
|
2017-04-18 14:15:22 +00:00
|
|
|
when: flush_iptables|bool
|
|
|
|
tags: ['iptables']
|
2017-03-21 09:13:54 +00:00
|
|
|
|
2016-12-07 16:36:24 +00:00
|
|
|
- name: reset | delete some files and directories
|
2017-02-17 21:22:34 +00:00
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: absent
|
2016-12-07 16:36:24 +00:00
|
|
|
with_items:
|
2016-12-13 10:43:06 +00:00
|
|
|
- "{{kube_config_dir}}"
|
2016-12-07 16:36:24 +00:00
|
|
|
- /var/lib/kubelet
|
2017-02-24 14:58:54 +00:00
|
|
|
- "{{ etcd_data_dir }}"
|
2016-12-09 15:33:10 +00:00
|
|
|
- /etc/ssl/etcd
|
|
|
|
- /var/log/calico
|
|
|
|
- /etc/cni
|
|
|
|
- /etc/nginx
|
|
|
|
- /etc/dnsmasq.d
|
2016-12-21 16:18:11 +00:00
|
|
|
- /etc/dnsmasq.conf
|
|
|
|
- /etc/dnsmasq.d-available
|
2016-12-09 15:33:10 +00:00
|
|
|
- /etc/etcd.env
|
|
|
|
- /etc/calico
|
|
|
|
- /opt/cni
|
2016-12-21 16:18:11 +00:00
|
|
|
- /etc/dhcp/dhclient.d/zdnsupdate.sh
|
|
|
|
- /etc/dhcp/dhclient-exit-hooks.d/zdnsupdate
|
|
|
|
- "{{ bin_dir }}/kubelet"
|
2017-06-29 06:45:15 +00:00
|
|
|
- "{{ bin_dir }}/kubernetes-scripts"
|
|
|
|
- /run/flannel
|
|
|
|
- /etc/flannel
|
|
|
|
- /run/kubernetes
|
|
|
|
- /usr/local/share/ca-certificates/kube-ca.crt
|
|
|
|
- /usr/local/share/ca-certificates/etcd-ca.crt
|
|
|
|
- /etc/ssl/certs/kube-ca.pem
|
|
|
|
- /etc/ssl/certs/etcd-ca.pem
|
|
|
|
- /var/log/pods/
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['files']
|
|
|
|
|
2016-12-21 16:18:11 +00:00
|
|
|
|
|
|
|
- name: reset | remove dns settings from dhclient.conf
|
|
|
|
blockinfile:
|
|
|
|
dest: "{{ item }}"
|
|
|
|
state: absent
|
|
|
|
follow: yes
|
|
|
|
marker: "# Ansible entries {mark}"
|
|
|
|
failed_when: false
|
|
|
|
with_items:
|
|
|
|
- /etc/dhclient.conf
|
|
|
|
- /etc/dhcp/dhclient.conf
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['files', 'dns']
|
2016-12-21 16:18:11 +00:00
|
|
|
|
|
|
|
- name: reset | remove host entries from /etc/hosts
|
|
|
|
blockinfile:
|
|
|
|
dest: "/etc/hosts"
|
|
|
|
state: absent
|
|
|
|
follow: yes
|
|
|
|
marker: "# Ansible inventory hosts {mark}"
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['files', 'dns']
|
2016-12-21 16:18:11 +00:00
|
|
|
|
|
|
|
- name: reset | Restart network
|
|
|
|
service:
|
|
|
|
name: >-
|
|
|
|
{% if ansible_os_family == "RedHat" -%}
|
|
|
|
network
|
|
|
|
{%- elif ansible_os_family == "Debian" -%}
|
|
|
|
networking
|
|
|
|
{%- endif %}
|
|
|
|
state: restarted
|
2017-02-16 16:25:03 +00:00
|
|
|
when: ansible_os_family not in ["CoreOS", "Container Linux by CoreOS"]
|
2017-04-18 14:15:22 +00:00
|
|
|
tags: ['services', 'network']
|