-
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
Fix --base-image caching for images specified by name:tag #11603
Fix --base-image caching for images specified by name:tag #11603
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 47.7s 50.7s 47.3s 46.2s 51.1s Times for minikube ingress: 34.7s 33.8s 33.9s 35.7s 32.3s docker driver with docker runtime
Times for minikube (PR 11603) start: 20.9s 22.4s 21.3s 21.1s 22.3s Times for minikube ingress: 29.0s 37.0s 27.5s 26.5s 29.0s docker driver with containerd runtime
Times for minikube start: 31.2s 43.3s 43.2s 46.2s 43.4s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for this PR this seems interesting !
@ilya-zuyev please pull upstream on this PR, there was a another PR that touched same part of this code might need to test with that |
These are the flake rates of all failed tests on Docker_Linux.
|
kvm2 driver with docker runtime
Times for minikube ingress: 36.8s 33.8s 36.7s 34.3s 34.7s Times for minikube (PR 11603) start: 46.2s 48.0s 45.9s 46.8s 50.6s docker driver with docker runtime
Times for minikube start: 21.7s 20.8s 22.4s 21.4s 21.4s Times for minikube ingress: 29.0s 29.6s 33.0s 26.5s 29.5s docker driver with containerd runtime
Times for minikube start: 48.3s 43.5s 47.4s 43.1s 47.3s |
done! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets fix the review comments and hopefully cloud shell test will pass this time too (seems like it didnt get started)
kvm2 driver with docker runtime
Times for minikube start: 51.0s 48.5s 47.1s 51.2s 47.4s Times for minikube (PR 11603) ingress: 43.2s 34.3s 43.2s 34.7s 36.3s docker driver with docker runtime
Times for minikube start: 22.0s 21.8s 22.1s 22.3s 22.7s Times for minikube ingress: 36.0s 31.5s 34.5s 35.0s 35.5s docker driver with containerd runtime
Times for minikube start: 42.9s 43.8s 43.7s 43.8s 47.2s |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ilya-zuyev, medyagh The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR fixes an issue when the image set by
--base-image
is downloaded on start even if it's already present in minikube cache.Before:
After:
Note, after the fix, the base image is not downloaded.
There is an exception for
latest
, when--base-image=<img>:latest
format is used the image is always pulled