We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50c40b2 commit 908460fCopy full SHA for 908460f
roles/openshift_service_catalog/tasks/start_api_server.yml
@@ -9,14 +9,12 @@
9
10
# wait to see that the apiserver is available
11
- name: wait for api server to be ready
12
- command: >
13
- curl --noproxy '*' -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
+ uri:
+ url: https://apiserver.kube-service-catalog.svc/healthz
+ validate_certs: no
+ return_content: yes
18
register: api_health
19
- until: api_health.stdout == 'ok'
+ until: "'ok' in api_health.content"
20
retries: 60
21
delay: 5
22
changed_when: false
0 commit comments