main.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. ######################################################################
  3. # NOTE: These are duplicated from roles/openshift_master/handlers/main.yml
  4. #
  5. # TODO: Use the consolidated 'openshift_handlers' role once it's ready
  6. # See: https://github.com/openshift/openshift-ansible/pull/4041#discussion_r118770782
  7. ######################################################################
  8. - name: restart master api
  9. systemd: name={{ openshift.common.service_type }}-master-api state=restarted
  10. when: (not (master_api_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native'
  11. notify: Verify API Server
  12. - name: restart master controllers
  13. systemd: name={{ openshift.common.service_type }}-master-controllers state=restarted
  14. when: (not (master_controllers_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native'
  15. - name: Verify API Server
  16. # Using curl here since the uri module requires python-httplib2 and
  17. # wait_for port doesn't provide health information.
  18. command: >
  19. curl --silent --tlsv1.2
  20. {% if openshift.common.version_gte_3_2_or_1_2 | bool %}
  21. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  22. {% else %}
  23. --cacert {{ openshift.common.config_base }}/master/ca.crt
  24. {% endif %}
  25. {{ openshift.master.api_url }}/healthz/ready
  26. args:
  27. # Disables the following warning:
  28. # Consider using get_url or uri module rather than running curl
  29. warn: no
  30. register: api_available_output
  31. until: api_available_output.stdout == 'ok'
  32. retries: 120
  33. delay: 1
  34. changed_when: false
  35. - name: OpenShift-CFME - Reload NFS Exports
  36. command: exportfs -ar