check_master_api_is_ready.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---
  2. - name: Wait for API to become available
  3. # Using curl here since the uri module requires python-httplib2 and
  4. # wait_for port doesn't provide health information.
  5. command: >
  6. curl --silent --tlsv1.2 --max-time 2
  7. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  8. {{ openshift.master.api_url }}/healthz/ready
  9. register: l_api_available_output
  10. until: l_api_available_output.stdout == 'ok'
  11. retries: 120
  12. delay: 1
  13. run_once: true
  14. changed_when: false
  15. failed_when: false
  16. - name: "Collect verbose curl output when API didn't become available"
  17. command: >-
  18. curl --verbose --tlsv1.2
  19. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  20. {{ openshift.master.api_url }}/healthz/ready
  21. register: l_api_available_verbose_output
  22. failed_when: false
  23. - name: "Collect API logs when API didn't become available"
  24. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  25. register: l_api_log_output
  26. when:
  27. - l_api_available_output.stdout != 'ok'
  28. - name: "Dump verbose curl output when the API didn't become available"
  29. debug:
  30. msg: "{{ l_api_available_verbose_output.stderr_lines }}"
  31. when: l_api_available_output.stdout != 'ok'
  32. - name: "Dump API logs when the API didn't become availabale"
  33. debug:
  34. msg: "{{ l_api_log_output.stdout_lines }}"
  35. when:
  36. - l_api_available_output.stdout != 'ok'
  37. - fail:
  38. msg: >
  39. API did not become available. Verbose curl output and API logs
  40. have been collected above to assist with debugging.
  41. when:
  42. - l_api_available_output.stdout != 'ok'