Skip to content
Snippets Groups Projects
Commit 3ca11b70 authored by Antoine Legrand's avatar Antoine Legrand Committed by GitHub
Browse files

Merge pull request #729 from vwfs/fix_reset_umount

Fix reverse umount in reset role
parents 45135ad3 1cfaf927
No related branches found
No related tags found
No related merge requests found
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
shell: docker ps -aq | xargs -r docker rm -fv shell: docker ps -aq | xargs -r docker rm -fv
- name: reset | gather mounted kubelet dirs - name: reset | gather mounted kubelet dirs
shell: mount | grep /var/lib/kubelet | awk '{print $3}' shell: mount | grep /var/lib/kubelet | awk '{print $3}' | tac
register: mounted_dirs register: mounted_dirs
- name: reset | unmount kubelet dirs - name: reset | unmount kubelet dirs
command: umount {{item}} command: umount {{item}}
with_items: '{{ mounted_dirs.stdout_lines | reverse }}' with_items: '{{ mounted_dirs.stdout_lines }}'
- name: reset | delete some files and directories - name: reset | delete some files and directories
file: path={{ item }} state=absent file: path={{ item }} state=absent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment