summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/tasks
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-01-07 21:59:46 -0500
committerAndrew Butcher <abutcher@redhat.com>2016-01-13 09:48:21 -0500
commit25e213f79ba5e25bf51d584971064e26d3537b49 (patch)
tree16af07920f4c78ef300536d18506253ea0db4094 /roles/openshift_master/tasks
parent8774f4995654715629be47a8cd5814bdb1962ec9 (diff)
downloadopenshift-25e213f79ba5e25bf51d584971064e26d3537b49.tar.gz
openshift-25e213f79ba5e25bf51d584971064e26d3537b49.tar.bz2
openshift-25e213f79ba5e25bf51d584971064e26d3537b49.tar.xz
openshift-25e213f79ba5e25bf51d584971064e26d3537b49.zip
Add a Verify API Server handler that waits for the API server to become
available
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r--roles/openshift_master/tasks/main.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml
index fbbcd2a8f..b43e9177e 100644
--- a/roles/openshift_master/tasks/main.yml
+++ b/roles/openshift_master/tasks/main.yml
@@ -269,6 +269,7 @@
service: name={{ openshift.common.service_type }}-master enabled=yes state=started
when: not openshift_master_ha | bool
register: start_result
+ notify: Verify API Server
- name: Stop and disable non HA master when running HA
service: name={{ openshift.common.service_type }}-master enabled=no state=stopped
@@ -282,6 +283,7 @@
service: name={{ openshift.common.service_type }}-master-api enabled=yes state=started
when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
register: start_result
+ notify: Verify API Server
- set_fact:
master_api_service_status_changed: "{{ start_result | changed }}"