Fix API ready check
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-11-25 09:29:28 +01:00
parent b9575d2de4
commit 9bfa6bf658
1 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,9 @@
url: https://registry.{{ vapp['metacluster.fqdn'] }}/api/v2.0/health url: https://registry.{{ vapp['metacluster.fqdn'] }}/api/v2.0/health
method: GET method: GET
register: api_readycheck register: api_readycheck
until: api_readycheck.json.status == 'healthy' until:
- api_readycheck.json.status is defined
- api_readycheck.json.status == 'healthy'
retries: 5 retries: 5
delay: 30 delay: 30