diff options
author | ewolinetz <ewolinet@redhat.com> | 2017-04-25 12:09:02 -0500 |
---|---|---|
committer | ewolinetz <ewolinet@redhat.com> | 2017-04-28 10:50:13 -0500 |
commit | 8b5dd3feeede035ddc0b66ad0b4008a5edba1a07 (patch) | |
tree | 73ee893e4fa8ee56d40cf6e61806f31d8ed4f1e1 /roles/openshift_metrics/handlers | |
parent | bf2f95376ff1eb3a1da9e23cb1c02a1ee90781de (diff) | |
download | openshift-8b5dd3feeede035ddc0b66ad0b4008a5edba1a07.tar.gz openshift-8b5dd3feeede035ddc0b66ad0b4008a5edba1a07.tar.bz2 openshift-8b5dd3feeede035ddc0b66ad0b4008a5edba1a07.tar.xz openshift-8b5dd3feeede035ddc0b66ad0b4008a5edba1a07.zip |
Updating logging and metrics to restart api, ha and controllers when updating master config
Diffstat (limited to 'roles/openshift_metrics/handlers')
-rw-r--r-- | roles/openshift_metrics/handlers/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/openshift_metrics/handlers/main.yml b/roles/openshift_metrics/handlers/main.yml index ffb812271..69c5a1663 100644 --- a/roles/openshift_metrics/handlers/main.yml +++ b/roles/openshift_metrics/handlers/main.yml @@ -4,6 +4,15 @@ when: (openshift.master.ha is not defined or not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool)) notify: Verify API Server +- name: restart master api + systemd: name={{ openshift.common.service_type }}-master-api state=restarted + when: (openshift.master.ha is defined and openshift.master.ha | bool) and (not (master_api_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native' + notify: Verify API Server + +- name: restart master controllers + systemd: name={{ openshift.common.service_type }}-master-controllers state=restarted + when: (openshift.master.ha is defined and openshift.master.ha | bool) and (not (master_controllers_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native' + - name: Verify API Server # Using curl here since the uri module requires python-httplib2 and # wait_for port doesn't provide health information. |