Merge "Reduce overhead of stack show loop"

This commit is contained in:
Zuul 2020-04-01 08:38:40 +00:00 committed by Gerrit Code Review
commit 61999a82f1
1 changed files with 3 additions and 3 deletions

View File

@ -88,8 +88,8 @@
- name: Wait for stack status
command: |
openstack --os-cloud undercloud stack show "{{ container }}" -c stack_status
openstack --os-cloud undercloud stack show --no-resolve-outputs "{{ container }}" -c stack_status
register: check_status
until: "'IN_PROGRESS' not in check_status.stdout"
retries: "{{ (timeout_mins|int * 60 / 15)|int }}"
delay: 15
retries: "{{ (timeout_mins|int * 60 / 10)|int }}"
delay: 10