restart.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ---
  2. - name: Restart nodes
  3. hosts: oo_nodes_to_config
  4. serial: "{{ openshift_restart_nodes_serial | default(1) }}"
  5. roles:
  6. - lib_openshift
  7. tasks:
  8. - name: Restart docker
  9. service:
  10. name: docker
  11. state: restarted
  12. register: l_docker_restart_docker_in_node_result
  13. until: not (l_docker_restart_docker_in_node_result is failed)
  14. retries: 3
  15. delay: 30
  16. - name: Restart containerized services
  17. service:
  18. name: "{{ item }}"
  19. state: started
  20. with_items:
  21. - etcd_container
  22. - openvswitch
  23. - "{{ openshift_service_type }}-master-api"
  24. - "{{ openshift_service_type }}-master-controllers"
  25. - "{{ openshift_service_type }}-node"
  26. failed_when: false
  27. when: openshift.common.is_containerized | bool
  28. - name: Wait for master API to come back online
  29. wait_for:
  30. host: "{{ openshift.common.hostname }}"
  31. state: started
  32. delay: 10
  33. port: "{{ openshift.master.api_port }}"
  34. timeout: 600
  35. when: inventory_hostname in groups.oo_masters_to_config
  36. - name: restart node
  37. service:
  38. name: "{{ openshift_service_type }}-node"
  39. state: restarted
  40. - name: Wait for node to be ready
  41. oc_obj:
  42. state: list
  43. kind: node
  44. name: "{{ openshift.common.hostname | lower }}"
  45. register: node_output
  46. delegate_to: "{{ groups.oo_first_master.0 }}"
  47. when: inventory_hostname in groups.oo_nodes_to_config
  48. until: node_output.results.returncode == 0 and node_output.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  49. # Give the node two minutes to come back online.
  50. retries: 24
  51. delay: 5