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.
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
After the change in 4336215, it now happens after the open:
if i.buffered { opener, err = i.bufferedOpener(i.ref) } else { opener, err = i.unbufferedOpener(i.ref) } if err != nil { return nil, err } i.client.NegotiateAPIVersion(context.Background())
pkg/v1/daemon/image.go
This means that it tries to run without first determining the highest version supported by the docker daemon:
Error response from daemon: client version 1.41 is too new. Maximum supported API version is 1.40
So it (i.client.NegotiateAPIVersion) needs to happen before the i.client.ImageSave (in the opener)
i.client.NegotiateAPIVersion
i.client.ImageSave
We get this error in minikube.
The text was updated successfully, but these errors were encountered:
Thanks -- sorry about that.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
After the change in 4336215, it now happens after the open:
pkg/v1/daemon/image.go
This means that it tries to run without first determining the highest version supported by the docker daemon:
Error response from daemon: client version 1.41 is too new. Maximum supported API version is 1.40
So it (
i.client.NegotiateAPIVersion
) needs to happen before thei.client.ImageSave
(in the opener)We get this error in minikube.
The text was updated successfully, but these errors were encountered: