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

This commit is contained in:
Zuul 2020-07-31 05:56:05 +00:00 committed by Gerrit Code Review
commit edcb97179e
1 changed files with 9 additions and 3 deletions

View File

@ -15,11 +15,17 @@
# under the License.
- name: Podman prune
- name: Podman image prune
become: true
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
command: podman image prune -a
- name: Clean podman volumes
command: podman volume prune -f
- name: Clean podman volumes
become: true
command: podman volume prune -f