Skip to content
Snippets Groups Projects
Commit eb33f085 authored by Alexander Block's avatar Alexander Block
Browse files

Changes according to code review

parent 00ad1511
No related merge requests found
...@@ -8,7 +8,9 @@ ...@@ -8,7 +8,9 @@
failed_when: false failed_when: false
- name: reset | remove services - name: reset | remove services
file: path="/etc/systemd/system/{{item}}" state=absent file:
path: "/etc/systemd/system/{{ item }}.service"
state: absent
with_items: with_items:
- kubelet - kubelet
- etcd - etcd
...@@ -27,7 +29,7 @@ ...@@ -27,7 +29,7 @@
- name: reset | unmount kubelet dirs - name: reset | unmount kubelet dirs
command: umount {{item}} command: umount {{item}}
with_items: '{{mounted_dirs.stdout_lines}}' with_items: '{{ mounted_dirs.stdout_lines | reverse }}'
- name: reset | delete some files and directories - name: reset | delete some files and directories
file: path={{ item }} state=absent file: path={{ item }} state=absent
...@@ -35,4 +37,11 @@ ...@@ -35,4 +37,11 @@
- /etc/kubernetes/ - /etc/kubernetes/
- /var/lib/kubelet - /var/lib/kubelet
- /var/lib/etcd - /var/lib/etcd
- /etc/ssl/etcd
- /var/log/calico
- /etc/cni
- /etc/nginx
- /etc/dnsmasq.d
- /etc/etcd.env
- /etc/calico
- /opt/cni
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment