|
@@ -124,9 +124,9 @@
|
|
|
# Using curl here since the uri module requires python-httplib2 and
|
|
|
# wait_for port doesn't provide health information.
|
|
|
command: >
|
|
|
- curl -k --head --silent {{ openshift_node_master_api_url }}
|
|
|
+ curl -k --silent {{ openshift_node_master_api_url }}/healthz/ready
|
|
|
register: api_available_output
|
|
|
- until: api_available_output.stdout.find("200 OK") != -1
|
|
|
+ until: api_available_output.stdout == 'ok'
|
|
|
retries: 120
|
|
|
delay: 1
|
|
|
changed_when: false
|