summaryrefslogtreecommitdiffstats
path: root/roles/nuage_master/handlers/main.yaml
blob: c0411d641657dc8602dc4312d6321e91e1f7b4c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: restart master api
  systemd: name={{ openshift_service_type }}-master-api state=restarted
  when: (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: (not master_controllers_service_status_changed | default(false))
  ignore_errors: yes