main.yml 794 B

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