mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 02:40:30 -07:00
Enhance wait message with keycloak healthcheck URL
This commit is contained in:
parent
496c902427
commit
543e82cb9f
1 changed files with 5 additions and 2 deletions
|
@ -56,9 +56,12 @@
|
|||
|
||||
- meta: flush_handlers
|
||||
|
||||
- name: Wait until Keycloak becomes active
|
||||
- set_fact:
|
||||
health_url: "{{ keycloak_management_url }}/health"
|
||||
|
||||
- name: "Wait until Keycloak becomes active {{ health_url }}"
|
||||
uri:
|
||||
url: "{{ keycloak_management_url }}/health"
|
||||
url: "{{ health_url }}"
|
||||
register: keycloak_status
|
||||
until: keycloak_status.status == 200
|
||||
retries: 20
|
||||
|
|
Loading…
Add table
Reference in a new issue