diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-11-06 12:08:26 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-11-06 12:08:26 -0500 |
commit | eb9914420e8c327a998531a4bb7a6b8406b4316f (patch) | |
tree | 9101a98eb30755cfa4b44b0a6ade7fa5a0747358 /playbooks/common/openshift-master/scaleup.yml | |
parent | 5efcf4a2f7e9c2f21c6f9f86dc08f12fd5f56290 (diff) | |
download | openshift-eb9914420e8c327a998531a4bb7a6b8406b4316f.tar.gz openshift-eb9914420e8c327a998531a4bb7a6b8406b4316f.tar.bz2 openshift-eb9914420e8c327a998531a4bb7a6b8406b4316f.tar.xz openshift-eb9914420e8c327a998531a4bb7a6b8406b4316f.zip |
Retry restarting master controllers
Currently, master controller services may fail to restart
if master api services are not fully initialized.
This commit enables retry of master controllers.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1509837
Diffstat (limited to 'playbooks/common/openshift-master/scaleup.yml')
-rw-r--r-- | playbooks/common/openshift-master/scaleup.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/playbooks/common/openshift-master/scaleup.yml b/playbooks/common/openshift-master/scaleup.yml index f4dc9df8a..05b37d59f 100644 --- a/playbooks/common/openshift-master/scaleup.yml +++ b/playbooks/common/openshift-master/scaleup.yml @@ -22,8 +22,13 @@ - name: restart master api service: name={{ openshift.common.service_type }}-master-controllers state=restarted notify: verify api server + # We retry the controllers because the API may not be 100% initialized yet. - name: restart master controllers - service: name={{ openshift.common.service_type }}-master-controllers state=restarted + command: "systemctl restart {{ openshift.common.service_type }}-master-controllers" + retries: 3 + delay: 5 + register: result + until: result.rc == 0 - name: verify api server command: > curl --silent --tlsv1.2 |