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 4a99050 commit db903d8Copy full SHA for db903d8
components/docker-up/docker-up/main.go
@@ -130,6 +130,8 @@ func runWithinNetns() (err error) {
130
}
131
132
args = append(args, fmt.Sprintf("--mtu=%v", netIface.Attrs().MTU))
133
+ // configure docker0 MTU (used as control plane, not related to containers)
134
+ args = append(args, fmt.Sprintf("--network-control-plane-mtu=%v", netIface.Attrs().MTU))
135
136
if listenFDs > 0 {
137
os.Setenv("LISTEN_PID", strconv.Itoa(os.Getpid()))
0 commit comments