mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-09 23:58:32 +01:00
fix: change health check to only check for 200
This commit is contained in:
@@ -46,7 +46,7 @@
|
|||||||
status_code: 200
|
status_code: 200
|
||||||
body_format: json
|
body_format: json
|
||||||
register: result
|
register: result
|
||||||
until: result.status == 200 and result.json.status == "UP"
|
until: result.status == 200 or result.status == 204
|
||||||
retries: 10
|
retries: 10
|
||||||
delay: 20
|
delay: 20
|
||||||
check_mode: false
|
check_mode: false
|
||||||
|
|||||||
Reference in New Issue
Block a user