main.yaml 648 B

12345678910111213141516171819
  1. ---
  2. - name: restart master api
  3. systemd: name={{ openshift_service_type }}-master-api state=restarted
  4. when: >
  5. (openshift_master_ha | bool) and
  6. (not master_api_service_status_changed | default(false))
  7. # TODO: need to fix up ignore_errors here
  8. # We retry the controllers because the API may not be 100% initialized yet.
  9. - name: restart master controllers
  10. command: "systemctl restart {{ openshift_service_type }}-master-controllers"
  11. retries: 3
  12. delay: 5
  13. register: result
  14. until: result.rc == 0
  15. when: >
  16. (openshift_master_ha | bool) and
  17. (not master_controllers_service_status_changed | default(false))
  18. ignore_errors: yes