main.yml 1.1 KB

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