This commit is contained in:
parent
e249498109
commit
b9575d2de4
@ -8,6 +8,15 @@
|
||||
kubeconfig: "{{ kubeconfig.path }}"
|
||||
values: "{{ components.harbor.chart_values }}"
|
||||
|
||||
- name: Ensure harbor API availability
|
||||
ansible.builtin.uri:
|
||||
url: https://registry.{{ vapp['metacluster.fqdn'] }}/api/v2.0/health
|
||||
method: GET
|
||||
register: api_readycheck
|
||||
until: api_readycheck.json.status == 'healthy'
|
||||
retries: 5
|
||||
delay: 30
|
||||
|
||||
- name: Push images to registry
|
||||
ansible.builtin.shell:
|
||||
cmd: >-
|
||||
|
Loading…
Reference in New Issue
Block a user