restart.yml 570 B

12345678910111213141516171819
  1. ---
  2. - name: Restart master API
  3. service:
  4. name: "{{ openshift_service_type }}-master-api"
  5. state: restarted
  6. - name: Wait for master API to come back online
  7. wait_for:
  8. host: "{{ openshift.common.hostname }}"
  9. state: started
  10. delay: 10
  11. port: "{{ openshift.master.api_port }}"
  12. timeout: 600
  13. # We retry the controllers because the API may not be 100% initialized yet.
  14. - name: restart master controllers
  15. command: "systemctl restart {{ openshift_service_type }}-master-controllers"
  16. retries: 3
  17. delay: 5
  18. register: result
  19. until: result.rc == 0