restart.yml 1006 B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - name: Restart docker
  3. service: name=docker state=restarted
  4. register: l_docker_restart_docker_in_upgrade_result
  5. until: not (l_docker_restart_docker_in_upgrade_result is failed)
  6. retries: 3
  7. delay: 30
  8. - name: Restart static master services
  9. command: /usr/local/bin/master-restart "{{ item }}"
  10. with_items:
  11. - api
  12. - controllers
  13. - etcd
  14. failed_when: false
  15. when: openshift_is_containerized | bool
  16. - name: Restart containerized services
  17. service: name={{ item }} state=started
  18. with_items:
  19. - etcd_container
  20. - openvswitch
  21. - "{{ openshift_service_type }}-master-api"
  22. - "{{ openshift_service_type }}-master-controllers"
  23. - "{{ openshift_service_type }}-node"
  24. failed_when: false
  25. when: openshift_is_containerized | bool
  26. - name: Wait for master API to come back online
  27. wait_for:
  28. host: "{{ openshift.common.hostname }}"
  29. state: started
  30. delay: 10
  31. port: "{{ openshift.master.api_port }}"
  32. timeout: 600
  33. when: inventory_hostname in groups.oo_masters_to_config