restart.yml 718 B

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