check_master_api_is_ready.yml 783 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Wait for APIs to become available
  3. command: >
  4. {{ openshift_client_binary }} get --raw /apis/{{ item }}/v1
  5. register: openshift_apis
  6. until: openshift_apis.rc == 0
  7. with_items: "{{ l_core_api_list }}"
  8. retries: 60
  9. delay: 5
  10. - name: "Collect API logs when API didn't become available"
  11. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  12. register: l_api_log_output
  13. when: openshift_apis is failed
  14. - name: "Dump API logs when the API didn't become availabale"
  15. debug:
  16. msg: "{{ l_api_log_output.stdout_lines }}"
  17. when: openshift_apis is failed
  18. - fail:
  19. msg: >
  20. API did not become available. Verbose curl output and API logs
  21. have been collected above to assist with debugging.
  22. when: openshift_apis is failed