restart.yml 1.7 KB

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