summaryrefslogtreecommitdiffstats
path: root/roles/nuage_master/handlers/main.yaml
blob: 7b55dda56c6569941218494efceed092cd1f99d2 (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_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_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