We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c078c commit 40cd9a9Copy full SHA for 40cd9a9
1 file changed
01-kind-cluster.sh
@@ -7,6 +7,7 @@ DOCKERMTU=$(ip link show docker0 | head -n1 | sed 's/^.*mtu \([0-9]*\) .*$/\1/')
7
if test $DOCKERMTU -gt $CLOUDMTU; then
8
echo "WARNING: Consider setting mtu to $((8*($CLOUDMTU/8))) in /etc/docker/daemon.json"
9
echo " and restart docker and do docker network rm kind ..."
10
+ echo "If you see ImagePullBackOff and ImagePullErrors, you now know why."
11
sudo ip link set dev docker0 mtu $((8*($CLOUDMTU/8)))
12
# Just in case ...
13
sudo sysctl net.ipv4.tcp_mtu_probing=1
0 commit comments