summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/handlers
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-01-12 17:18:18 -0500
committerAndrew Butcher <abutcher@redhat.com>2016-01-13 09:48:36 -0500
commit609469eb8d25baeee30cda96377c9b3fda6e499d (patch)
treede41b277e70241b610dbfeee716fc9e2f38e63d9 /roles/openshift_master/handlers
parent25e213f79ba5e25bf51d584971064e26d3537b49 (diff)
downloadopenshift-609469eb8d25baeee30cda96377c9b3fda6e499d.tar.gz
openshift-609469eb8d25baeee30cda96377c9b3fda6e499d.tar.bz2
openshift-609469eb8d25baeee30cda96377c9b3fda6e499d.tar.xz
openshift-609469eb8d25baeee30cda96377c9b3fda6e499d.zip
Update api verification.
Diffstat (limited to 'roles/openshift_master/handlers')
-rw-r--r--roles/openshift_master/handlers/main.yml14
1 files changed, 9 insertions, 5 deletions
diff --git a/roles/openshift_master/handlers/main.yml b/roles/openshift_master/handlers/main.yml
index 523ba8ee4..6b9992eea 100644
--- a/roles/openshift_master/handlers/main.yml
+++ b/roles/openshift_master/handlers/main.yml
@@ -14,8 +14,12 @@
when: (openshift_master_ha | bool) and (not (master_controllers_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native'
- name: Verify API Server
- wait_for:
- host: "{{ openshift.common.ip }}"
- port: "{{ openshift.master.api_port }}"
- state: started
- timeout: 180
+ # 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 }}
+ register: api_available_output
+ until: api_available_output.stdout.find("200 OK") != -1
+ retries: 120
+ delay: 1
+ changed_when: false