Add retries to get_url and uri tasks
These tasks occasionally fail in CI, causing jobs to fail. Change-Id: I89041a641d8cb66c7848fa9ae9264a51aa1e38c8
This commit is contained in:
parent
2dc17631cb
commit
2951f26ad1
@ -17,3 +17,7 @@
|
|||||||
mode: 0644
|
mode: 0644
|
||||||
loop: "{{ apt_keys }}"
|
loop: "{{ apt_keys }}"
|
||||||
become: true
|
become: true
|
||||||
|
register: result
|
||||||
|
until: result is successful
|
||||||
|
retries: 3
|
||||||
|
delay: 5
|
||||||
|
@ -20,3 +20,7 @@
|
|||||||
notify:
|
notify:
|
||||||
- Copy Dell switch BMP images
|
- Copy Dell switch BMP images
|
||||||
become: True
|
become: True
|
||||||
|
register: result
|
||||||
|
until: result is successful
|
||||||
|
retries: 3
|
||||||
|
delay: 5
|
||||||
|
@ -12,6 +12,9 @@
|
|||||||
url: "{{ image_download_checksum_url }}"
|
url: "{{ image_download_checksum_url }}"
|
||||||
return_content: true
|
return_content: true
|
||||||
register: expected_checksum
|
register: expected_checksum
|
||||||
|
until: expected_checksum is successful
|
||||||
|
retries: 3
|
||||||
|
delay: 5
|
||||||
when:
|
when:
|
||||||
- image_download_checksum_url is not none
|
- image_download_checksum_url is not none
|
||||||
- image_download_checksum_url != ""
|
- image_download_checksum_url != ""
|
||||||
@ -29,6 +32,10 @@
|
|||||||
# Always download the image if we have no checksum to compare with.
|
# Always download the image if we have no checksum to compare with.
|
||||||
force: "{{ expected_checksum is skipped }}"
|
force: "{{ expected_checksum is skipped }}"
|
||||||
backup: true
|
backup: true
|
||||||
|
register: result
|
||||||
|
until: result is successful
|
||||||
|
retries: 3
|
||||||
|
delay: 5
|
||||||
when:
|
when:
|
||||||
- image_download_url is not none
|
- image_download_url is not none
|
||||||
- image_download_url != ""
|
- image_download_url != ""
|
||||||
|
Loading…
Reference in New Issue
Block a user