Merge "tripleo_podman_purge: try to use -f when pruning images" into stable/ussuri

This commit is contained in:
Zuul 2020-07-30 16:45:42 +00:00 committed by Gerrit Code Review
commit c387938bd4
1 changed files with 9 additions and 3 deletions

View File

@ -15,11 +15,17 @@
# under the License. # under the License.
- name: Podman prune - name: Podman image prune
become: true become: true
block: block:
- name: Clean podman images
command: podman image prune -a -f
rescue:
# In case -f isn't available yet, we fallback to old way.
# https://bugs.launchpad.net/tripleo/+bug/1889418
- name: Clean podman images - name: Clean podman images
command: podman image prune -a command: podman image prune -a
- name: Clean podman volumes - name: Clean podman volumes
command: podman volume prune -f become: true
command: podman volume prune -f