main.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. - name: restart NetworkManager
  3. systemd:
  4. name: NetworkManager
  5. state: restarted
  6. enabled: True
  7. when:
  8. - (not skip_node_svc_handlers | default(False) | bool)
  9. - name: restart dnsmasq
  10. systemd:
  11. name: dnsmasq
  12. state: restarted
  13. when:
  14. - (not skip_node_svc_handlers | default(False) | bool)
  15. - name: restart openvswitch
  16. systemd:
  17. name: openvswitch
  18. state: restarted
  19. when:
  20. - (not skip_node_svc_handlers | default(False) | bool)
  21. - not (ovs_service_status_changed | default(false) | bool)
  22. - openshift_node_use_openshift_sdn | bool
  23. - not openshift_node_bootstrap
  24. register: l_openshift_node_stop_openvswitch_result
  25. until: not (l_openshift_node_stop_openvswitch_result is failed)
  26. retries: 3
  27. delay: 30
  28. notify:
  29. - restart openvswitch pause
  30. - name: restart openvswitch pause
  31. pause: seconds=15
  32. when:
  33. - (not skip_node_svc_handlers | default(False) | bool)
  34. - openshift.common.is_containerized | bool
  35. - name: restart node
  36. systemd:
  37. name: "{{ openshift_service_type }}-node"
  38. state: restarted
  39. register: l_openshift_node_restart_node_result
  40. until: not (l_openshift_node_restart_node_result is failed)
  41. retries: 3
  42. delay: 30
  43. when:
  44. - (not skip_node_svc_handlers | default(False) | bool)
  45. - not (node_service_status_changed | default(false) | bool)
  46. - not openshift_node_bootstrap
  47. - name: reload systemd units
  48. command: systemctl daemon-reload
  49. when:
  50. - (not skip_node_svc_handlers | default(False) | bool)