summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-03-08 10:14:19 -0500
committerAndrew Butcher <abutcher@redhat.com>2016-03-08 12:13:05 -0500
commiteb4bbf0f3e5bdf5259ea1674c2c84a9ce83ede69 (patch)
treedccafde89ab97c66f414f870a8ed43675900495d /playbooks
parent440875336eb0df1c05056aeec8dc2ee0032a74d8 (diff)
downloadopenshift-eb4bbf0f3e5bdf5259ea1674c2c84a9ce83ede69.tar.gz
openshift-eb4bbf0f3e5bdf5259ea1674c2c84a9ce83ede69.tar.bz2
openshift-eb4bbf0f3e5bdf5259ea1674c2c84a9ce83ede69.tar.xz
openshift-eb4bbf0f3e5bdf5259ea1674c2c84a9ce83ede69.zip
Use /healthz/ready when verifying api
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/common/openshift-master/scaleup.yml4
-rw-r--r--playbooks/common/openshift-node/config.yml4
2 files changed, 4 insertions, 4 deletions
diff --git a/playbooks/common/openshift-master/scaleup.yml b/playbooks/common/openshift-master/scaleup.yml
index 6f8151d30..ccb1d23f1 100644
--- a/playbooks/common/openshift-master/scaleup.yml
+++ b/playbooks/common/openshift-master/scaleup.yml
@@ -33,9 +33,9 @@
service: name={{ openshift.common.service_type }}-master-controllers state=restarted
- name: verify api server
command: >
- curl -k --head --silent {{ openshift.master.api_url }}
+ curl -k --silent {{ openshift.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
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml
index 7edea9160..c62167bd3 100644
--- a/playbooks/common/openshift-node/config.yml
+++ b/playbooks/common/openshift-node/config.yml
@@ -258,9 +258,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.master.api_url }}
+ curl -k --silent {{ openshift.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