Make tobiko-cleanup role not to stuck at stack deletion
Change-Id: I721db29d0e03fec38436ff4820f5f461d3689443
This commit is contained in:
parent
2aa0ec77d4
commit
7bc7d1686a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user