main.yml 794 B

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: restart master
  3. command: /usr/local/bin/master-restart "{{ item }}"
  4. with_items:
  5. - api
  6. - controllers
  7. retries: 5
  8. delay: 5
  9. register: result
  10. until: result.rc == 0
  11. notify: verify API server
  12. - name: verify API server
  13. # Using curl here since the uri module requires python-httplib2 and
  14. # wait_for port doesn't provide health information.
  15. command: >
  16. curl --silent --tlsv1.2 --max-time 2
  17. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  18. {{ openshift.master.api_url }}/healthz/ready
  19. args:
  20. # Disables the following warning:
  21. # Consider using get_url or uri module rather than running curl
  22. warn: no
  23. register: l_api_available_output
  24. until: l_api_available_output.stdout == 'ok'
  25. retries: 120
  26. delay: 1
  27. changed_when: false