commit | 52c3a701d4ca0245580194fac0ff54cd193c89dc | [log] [tgz] |
---|---|---|
author | Mohammed Naser <mnaser@vexxhost.com> | Thu Feb 02 02:03:34 2023 +0000 |
committer | Mohammed Naser <mnaser@vexxhost.com> | Thu Feb 02 02:23:34 2023 +0000 |
tree | b980a907fc48369cdedec6f487a90f672b29c82a | |
parent | 092ff1cbbb074ebd8b25c87b2f05750a307cfdf6 [diff] [blame] |
chore: add retries to openstack resources
diff --git a/roles/magnum/tasks/main.yml b/roles/magnum/tasks/main.yml index f22a502..92b0dba 100644 --- a/roles/magnum/tasks/main.yml +++ b/roles/magnum/tasks/main.yml
@@ -413,3 +413,9 @@ properties: os_distro: ubuntu-focal loop: "{{ magnum_images }}" + # NOTE(mnaser): This often fails since the SSL certificates are not + # ready yet. We need to wait for them to be ready. + retries: 60 + delay: 5 + register: _result + until: _result is not failed