check_master_api_is_ready.yml 685 B

1234567891011121314151617181920212223242526
  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: Get API logs
  11. command: >
  12. /usr/local/bin/master-logs api api
  13. register: control_plane_logs_api
  14. ignore_errors: true
  15. when: openshift_apis is failed
  16. - debug:
  17. msg: "{{ control_plane_logs_api.stdout_lines }}"
  18. when: openshift_apis is failed
  19. - fail:
  20. msg: >
  21. API did not become available. Verbose curl output and API logs
  22. have been collected above to assist with debugging.
  23. when: openshift_apis is failed