Skip to content

Commit df06f84

Browse files
enjvrutkovs
authored andcommitted
Update API healthz check to use uri module
This should prevent issues with curl getting upset with certs that have the same serial number and name. See openshift/origin#18405
1 parent 696a315 commit df06f84

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

roles/openshift_service_catalog/tasks/start_api_server.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99

1010
# wait to see that the apiserver is available
1111
- name: wait for api server to be ready
12-
command: >
13-
curl -k https://apiserver.kube-service-catalog.svc/healthz
14-
args:
15-
# Disables the following warning:
16-
# Consider using get_url or uri module rather than running curl
17-
warn: no
12+
uri:
13+
url: https://apiserver.kube-service-catalog.svc/healthz
14+
validate_certs: no
15+
return_content: yes
1816
register: api_health
19-
until: api_health.stdout == 'ok'
20-
retries: 120
21-
delay: 1
17+
until: "'ok' in api_health.content"
18+
retries: 60
19+
delay: 5
2220
changed_when: false

0 commit comments

Comments
 (0)