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.
1 parent 56238a8 commit 081a98aCopy full SHA for 081a98a
roles/router/tasks/install.yml
@@ -68,6 +68,11 @@
68
when: inventory_hostname in groups['master_nodes']
69
become: true
70
71
+- name: Disable GRO flag on the {{ core.data_iface }} interface
72
+ shell: ethtool -K {{ core.data_iface }} gro off
73
+ when: inventory_hostname in groups['master_nodes']
74
+ become: true
75
+
76
- name: find {{ core.data_iface }}'s netplan network directory
77
shell: basename $(find /*/systemd/network -maxdepth 1 -not -type d -name '*{{ core.data_iface }}.network' -print)
78
register: result
0 commit comments