Merge "Make the metalsmith module interactions more resilient"

This commit is contained in:
Zuul 2020-04-03 20:28:27 +00:00 committed by Gerrit Code Review
commit 3ed3739f04
2 changed files with 10 additions and 0 deletions

View File

@ -101,6 +101,9 @@
state: reserved
clean_up: true
register: baremetal_reserved
until: baremetal_reserved is success
retries: 3
delay: 2
# NOTE(cloudnull): This limits the concurrency so that we're not adding
# more threads than needed.
@ -120,6 +123,9 @@
timeout: "{{ node_timeout }}"
concurrency: "{{ runtime_concurrency }}"
register: baremetal_provisioned
until: baremetal_provisioned is success
retries: 3
delay: 2
- name: Populate environment
tripleo_baremetal_populate_environment:

View File

@ -79,3 +79,7 @@
instances: "{{ baremetal_existing.instances }}"
state: absent
when: not prompt|bool
register: baremetal_unprovisioned
until: baremetal_unprovisioned is success
retries: 3
delay: 2