|
@@ -9,14 +9,12 @@
|
|
|
|
|
|
# wait to see that the apiserver is available
|
|
|
- name: wait for api server to be ready
|
|
|
- command: >
|
|
|
- curl --noproxy '*' -k https://apiserver.kube-service-catalog.svc/healthz
|
|
|
- args:
|
|
|
- # Disables the following warning:
|
|
|
- # Consider using get_url or uri module rather than running curl
|
|
|
- warn: no
|
|
|
+ uri:
|
|
|
+ url: https://apiserver.kube-service-catalog.svc/healthz
|
|
|
+ validate_certs: no
|
|
|
+ return_content: yes
|
|
|
register: api_health
|
|
|
- until: api_health.stdout == 'ok'
|
|
|
+ until: "'ok' in api_health.content"
|
|
|
retries: 60
|
|
|
delay: 5
|
|
|
changed_when: false
|