restart.yml 660 B

12345678910111213141516171819202122
  1. ---
  2. - name: Restart master API
  3. service:
  4. name: "{{ openshift_service_type }}-master-api"
  5. state: restarted
  6. when: openshift_master_ha | bool
  7. - name: Wait for master API to come back online
  8. wait_for:
  9. host: "{{ openshift.common.hostname }}"
  10. state: started
  11. delay: 10
  12. port: "{{ openshift.master.api_port }}"
  13. timeout: 600
  14. when: openshift_master_ha | bool
  15. - name: Restart master controllers
  16. service:
  17. name: "{{ openshift_service_type }}-master-controllers"
  18. state: restarted
  19. # Ignore errrors since it is possible that type != simple for
  20. # pre-3.1.1 installations.
  21. ignore_errors: true
  22. when: openshift_master_ha | bool