tobiko/roles/tobiko-cleanup/tasks/main.yaml

9 lines
315 B
YAML

---
- name: "cleanup 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
ignore_errors: yes