Make tobiko-cleanup role not to stuck at stack deletion

Change-Id: I721db29d0e03fec38436ff4820f5f461d3689443
This commit is contained in:
Alex Katz 2021-11-22 16:05:21 +02:00
parent 2aa0ec77d4
commit 7bc7d1686a
1 changed files with 12 additions and 3 deletions

View File

@ -1,8 +1,17 @@
---
- name: "cleanup stacks created by tobiko tests"
- name: "cleanup Heat stacks created by Tobiko tests"
shell: |
source {{ stackrc_file }}
openstack stack list -f value -c 'Stack Name' | grep "^tobiko\." | xargs openstack stack delete --wait
openstack image list -f value -c Name | grep "^tobiko\." | xargs openstack image delete
openstack stack list -f value -c 'Stack Name' | \
grep "^tobiko\." | \
xargs -r openstack stack delete -y --wait
ignore_errors: yes
- name: "cleanup Glance images created by Tobiko tests"
shell: |
source {{ stackrc_file }}
openstack image list -f value -c 'Name' | \
grep "^tobiko\." | \
xargs -r openstack image delete
ignore_errors: yes