check_master_api_is_ready.yml 475 B

1234567891011121314
  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
  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