restart.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. # input variables:
  3. # - openshift.common.service_type
  4. # - openshift.common.is_containerized
  5. # - openshift.common.hostname
  6. # - openshift.master.api_port
  7. # NOTE: This is needed to make sure we are using the correct set
  8. # of systemd unit files. The RPMs lay down defaults but
  9. # the install/upgrade may override them in /etc/systemd/system/.
  10. # NOTE: We don't use the systemd module as some versions of the module
  11. # require a service to be part of the call.
  12. - name: Reload systemd to ensure latest unit files
  13. command: systemctl daemon-reload
  14. - name: Restart container runtime
  15. service:
  16. name: "{{ openshift_docker_service_name }}"
  17. state: started
  18. register: docker_start_result
  19. until: not docker_start_result | failed
  20. retries: 3
  21. delay: 30
  22. - name: Start services
  23. service: name={{ item }} state=started
  24. with_items:
  25. - etcd_container
  26. - openvswitch
  27. - "{{ openshift.common.service_type }}-master-api"
  28. - "{{ openshift.common.service_type }}-master-controllers"
  29. - "{{ openshift.common.service_type }}-node"
  30. failed_when: false
  31. - name: Wait for master API to come back online
  32. wait_for:
  33. host: "{{ openshift.common.hostname }}"
  34. state: started
  35. delay: 10
  36. port: "{{ openshift.master.api_port }}"
  37. timeout: 600
  38. when: inventory_hostname in groups.oo_masters_to_config