restart.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 | failed
  14. retries: 3
  15. delay: 30
  16. - name: Update docker facts
  17. openshift_facts:
  18. role: docker
  19. - name: Restart containerized services
  20. service:
  21. name: "{{ item }}"
  22. state: started
  23. with_items:
  24. - etcd_container
  25. - openvswitch
  26. - "{{ openshift.common.service_type }}-master-api"
  27. - "{{ openshift.common.service_type }}-master-controllers"
  28. - "{{ openshift.common.service_type }}-node"
  29. failed_when: false
  30. when: openshift.common.is_containerized | bool
  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
  39. - name: restart node
  40. service:
  41. name: "{{ openshift.common.service_type }}-node"
  42. state: restarted
  43. - name: Wait for node to be ready
  44. oc_obj:
  45. state: list
  46. kind: node
  47. name: "{{ openshift.common.hostname | lower }}"
  48. register: node_output
  49. delegate_to: "{{ groups.oo_first_master.0 }}"
  50. when: inventory_hostname in groups.oo_nodes_to_config
  51. until: node_output.results.returncode == 0 and node_output.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  52. # Give the node two minutes to come back online.
  53. retries: 24
  54. delay: 5