Merge "Make the metalsmith module interactions more resilient"
This commit is contained in:
commit
3ed3739f04
@ -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:
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user