We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9514700 + 2c24a9b commit f9ade97Copy full SHA for f9ade97
roles/router/tasks/install.yml
@@ -70,6 +70,11 @@
70
when: inventory_hostname in groups['master_nodes']
71
become: true
72
73
+- name: Disable GRO flag on the {{ core.data_iface }} interface
74
+ shell: ethtool -K {{ core.data_iface }} gro off
75
+ when: inventory_hostname in groups['master_nodes']
76
+ become: true
77
+
78
- name: find {{ core.data_iface }}'s netplan network directory
79
shell: basename $(find /*/systemd/network -maxdepth 1 -not -type d -name '*{{ core.data_iface }}.network' -print)
80
register: result
0 commit comments