fix: Add retries to wait for pinniped-concierge to come online
This commit is contained in:
parent
32dda728cb
commit
931eaf366c
@ -13,6 +13,10 @@
|
|||||||
ansible.builtin.shell:
|
ansible.builtin.shell:
|
||||||
cmd: pinniped get kubeconfig --kubeconfig {{ capi_kubeconfig.path }}
|
cmd: pinniped get kubeconfig --kubeconfig {{ capi_kubeconfig.path }}
|
||||||
register: pinniped_config
|
register: pinniped_config
|
||||||
|
until:
|
||||||
|
- pinniped_config is not failed
|
||||||
|
retries: "{{ playbook.retries }}"
|
||||||
|
delay: "{{ ((storage_benchmark | float) * playbook.delay.short) | int }}"
|
||||||
|
|
||||||
- name: Store kubeconfig in tempfile
|
- name: Store kubeconfig in tempfile
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
|
Loading…
Reference in New Issue
Block a user