main.yml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: restart master api
  3. systemd: name={{ openshift.common.service_type }}-master-api state=restarted
  4. when: (not (master_api_service_status_changed | default(false) | bool))
  5. notify: Verify API Server
  6. # We retry the controllers because the API may not be 100% initialized yet.
  7. - name: restart master controllers
  8. command: "systemctl restart {{ openshift.common.service_type }}-master-controllers"
  9. retries: 3
  10. delay: 5
  11. register: result
  12. until: result.rc == 0
  13. when: (not (master_controllers_service_status_changed | default(false) | bool))
  14. - name: Verify API Server
  15. # Using curl here since the uri module requires python-httplib2 and
  16. # wait_for port doesn't provide health information.
  17. command: >
  18. curl --silent --tlsv1.2
  19. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  20. {{ openshift.master.api_url }}/healthz/ready
  21. args:
  22. # Disables the following warning:
  23. # Consider using get_url or uri module rather than running curl
  24. warn: no
  25. register: api_available_output
  26. until: api_available_output.stdout == 'ok'
  27. retries: 120
  28. delay: 1
  29. changed_when: false