main.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: restart openvswitch
  3. systemd:
  4. name: openvswitch
  5. state: restarted
  6. when:
  7. - (not skip_node_svc_handlers | default(False) | bool)
  8. - not (ovs_service_status_changed | default(false) | bool)
  9. - openshift_node_use_openshift_sdn | bool
  10. - not openshift_node_bootstrap
  11. register: l_openshift_node_stop_openvswitch_result
  12. until: not l_openshift_node_stop_openvswitch_result | failed
  13. retries: 3
  14. delay: 30
  15. notify:
  16. - restart openvswitch pause
  17. - name: restart openvswitch pause
  18. pause: seconds=15
  19. when:
  20. - (not skip_node_svc_handlers | default(False) | bool)
  21. - openshift.common.is_containerized | bool
  22. - name: restart node
  23. systemd:
  24. name: "{{ openshift.common.service_type }}-node"
  25. state: restarted
  26. register: l_openshift_node_restart_node_result
  27. until: not l_openshift_node_restart_node_result | failed
  28. retries: 3
  29. delay: 30
  30. when:
  31. - (not skip_node_svc_handlers | default(False) | bool)
  32. - not (node_service_status_changed | default(false) | bool)
  33. - not openshift_node_bootstrap
  34. - name: reload systemd units
  35. command: systemctl daemon-reload