We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 696a315 commit df06f84Copy full SHA for df06f84
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 -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'
20
- retries: 120
21
- delay: 1
+ until: "'ok' in api_health.content"
+ retries: 60
+ delay: 5
22
changed_when: false
0 commit comments