-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker: pulls may fail if MTU is <1500 #9528
Comments
this blog post suggests setting the TPU to 1400 would help https://medium.com/@sylwit/how-we-spent-a-full-day-figuring-out-a-mtu-issue-with-docker-4d81fdfe2caf for the records our TPUs are 1500
docker allows setting the option for networks
|
The MTU probing approach can definitely help. MTU's of less than 1500 are kind of exotic in 2020, but are definitely seen within GCP. One alternative/addition is that the Docker driver could check the MTU of the bridge, and copy it to the custom network it creates. The upside of enabling probing is that it may also improve the situation for non-Docker drivers, although our scripts for setting sysctl settings differ between ISO & containers. |
on cloud shell if we dont set this paramter, docker pull on "some images" hangs... (for example on golang:1.15) and not on other images such as alpine ...
example:
we need to investigate does it make sense to set this by default in our image/iso ?
The text was updated successfully, but these errors were encountered: