-
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: incorrect finalImg affecting downloading kic form github assets #20316
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 52.1s 51.0s 53.4s 52.3s 53.1s Times for minikube ingress: 18.2s 15.6s 19.0s 18.6s 19.1s docker driver with docker runtime
Times for minikube (PR 20316) start: 20.6s 24.5s 21.8s 24.0s 24.3s Times for minikube ingress: 12.3s 12.3s 12.3s 12.8s 12.8s docker driver with containerd runtime
Times for minikube start: 20.7s 20.7s 21.2s 20.4s 21.0s Times for minikube ingress: 22.9s 22.8s 22.8s 22.8s 39.3s |
Here are the number of top 10 failed tests in each environments with lowest flake rate.
Besides the following environments also have failed tests:
To see the flake rates of all tests by environment, click here. |
if !downloadOnly && driver.IsDocker(cc.Driver) { | ||
if finalImg, err = download.CacheToDaemon("kicbase"); err == nil { | ||
if finalImg, err = download.CacheToDaemon(fmt.Sprintf("kicbase/stable:%s", kicbaseVersion)); err == nil { |
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.
can you put in the PR description (the verbose log) for First and Second Run...so on the Second run we should make sure minikube is NOT re-downloading the github assets and not re-loading it in the daemon...
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.
after the PR desc update, we could merge this
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ComradeProgrammer, 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 |
fix: fix incorrect finalImg in cache.go
When testing the new "download kicbase image from github release" feature, I found that it cannot work. This PR fixes the bugs and make it work now.
Before:
After: