Skip to content
Snippets Groups Projects
Unverified Commit 9e85a023 authored by Chad Swenson's avatar Chad Swenson Committed by GitHub
Browse files

Merge pull request #2360 from mattymo/reset_fixes

retry unmount kubelet dirs
parents 4b5f780f c20f38b8
No related branches found
No related tags found
No related merge requests found
...@@ -67,6 +67,10 @@ ...@@ -67,6 +67,10 @@
- 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 }}'
register: umount_dir
retries: 4
until: umount_dir.rc == 0
delay: 5
tags: tags:
- mounts - mounts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment