main.yml 1.2 KB

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