summaryrefslogtreecommitdiffstats
path: root/roles/nuage_master/handlers/main.yaml
blob: cb83c8ead5b5facd9c11fe32f6526c4fbbea4d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- name: restart master api
  systemd: name={{ openshift.common.service_type }}-master-api state=restarted
  when: >
    (openshift_master_ha | bool) and
    (not master_api_service_status_changed | default(false))

# TODO: need to fix up ignore_errors here
# We retry the controllers because the API may not be 100% initialized yet.
- name: restart master controllers
  command: "systemctl restart {{ openshift.common.service_type }}-master-controllers"
  retries: 3
  delay: 5
  register: result
  until: result.rc == 0
  when: >
    (openshift_master_ha | bool) and
    (not master_controllers_service_status_changed | default(false))
  ignore_errors: yes