main.yaml 904 B

123456789101112131415161718
  1. ---
  2. - name: restart nuage-openshift-monitor
  3. become: yes
  4. service: name=nuage-openshift-monitor state=restarted
  5. - name: restart master
  6. service: name={{ openshift.common.service_type }}-master state=restarted
  7. when: (not openshift_master_ha | bool) and (not master_service_status_changed | default(false))
  8. - name: restart master api
  9. service: name={{ openshift.common.service_type }}-master-api state=restarted
  10. when: (openshift_master_ha | bool) and (not master_api_service_status_changed | default(false)) and openshift.master.cluster_method == 'native'
  11. # TODO: need to fix up ignore_errors here
  12. - name: restart master controllers
  13. service: name={{ openshift.common.service_type }}-master-controllers state=restarted
  14. when: (openshift_master_ha | bool) and (not master_controllers_service_status_changed | default(false)) and openshift.master.cluster_method == 'native'
  15. ignore_errors: yes