main.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: restart master
  3. service: name={{ openshift.common.service_type }}-master state=restarted
  4. when: (openshift.master.ha is not defined or not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool))
  5. notify: Verify API Server
  6. - name: restart master api
  7. service: name={{ openshift.common.service_type }}-master-api state=restarted
  8. when: (openshift.master.ha is defined and openshift.master.ha | bool) and (not (master_api_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native'
  9. notify: Verify API Server
  10. - name: restart master controllers
  11. service: name={{ openshift.common.service_type }}-master-controllers state=restarted
  12. when: (openshift.master.ha is defined and openshift.master.ha | bool) and (not (master_controllers_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native'
  13. - name: Verify API Server
  14. # Using curl here since the uri module requires python-httplib2 and
  15. # wait_for port doesn't provide health information.
  16. command: >
  17. curl --silent
  18. {% if openshift.common.version_gte_3_2_or_1_2 | bool %}
  19. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  20. {% else %}
  21. --cacert {{ openshift.common.config_base }}/master/ca.crt
  22. {% endif %}
  23. {{ openshift.master.api_url }}/healthz/ready
  24. args:
  25. # Disables the following warning:
  26. # Consider using get_url or uri module rather than running curl
  27. warn: no
  28. register: api_available_output
  29. until: api_available_output.stdout == 'ok'
  30. retries: 120
  31. delay: 1
  32. changed_when: false