main.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - name: restart master api
  3. systemd:
  4. name: "{{ openshift.common.service_type }}-master-api"
  5. state: restarted
  6. when:
  7. - not (master_api_service_status_changed | default(false) | bool)
  8. notify:
  9. - Verify API Server
  10. # We retry the controllers because the API may not be 100% initialized yet.
  11. - name: restart master controllers
  12. command: "systemctl restart {{ openshift.common.service_type }}-master-controllers"
  13. retries: 3
  14. delay: 5
  15. register: result
  16. until: result.rc == 0
  17. when:
  18. - not (master_controllers_service_status_changed | default(false) | bool)
  19. - name: Verify API Server
  20. # Using curl here since the uri module requires python-httplib2 and
  21. # wait_for port doesn't provide health information.
  22. command: >
  23. curl --silent --tlsv1.2
  24. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  25. {{ openshift.master.api_url }}/healthz/ready
  26. args:
  27. # Disables the following warning:
  28. # Consider using get_url or uri module rather than running curl
  29. warn: no
  30. register: l_api_available_output
  31. until: l_api_available_output.stdout == 'ok'
  32. retries: 120
  33. delay: 1
  34. changed_when: false