Merge "Ignore endpoint not found errors"

This commit is contained in:
Zuul 2021-02-08 17:01:46 +00:00 committed by Gerrit Code Review
commit 47f503f206
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@
openstack --os-cloud undercloud container delete "{{ item }}" --recursive
failed_when:
- container_objects.rc != 0
- "'Not Found' not in container_objects.stderr"
- "'not found' not in container_objects.stderr | lower"
changed_when:
- "'Not Found' not in container_objects.stderr"
- "'not found' not in container_objects.stderr | lower"
register: container_objects
loop:
- "{{ stack_name }}"