-
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
none driver: fix image build #16386
none driver: fix image build #16386
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube (PR 16386) start: 51.0s 51.3s 50.3s 49.4s 51.0s Times for minikube ingress: 23.7s 25.2s 28.2s 27.2s 84.2s docker driver with docker runtime
Times for minikube start: 21.8s 22.3s 22.4s 21.9s 25.0s Times for minikube ingress: 22.5s 19.5s 22.5s 21.0s 20.0s docker driver with containerd runtime
Times for minikube start: 20.3s 20.4s 20.7s 23.7s 20.0s Times for minikube ingress: 31.5s 32.0s 31.5s 32.0s 33.0s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh, spowelljr 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 |
Don't merge until #16408 is merged as to not break our test infra. |
Fixes #16385
The cause was from the below lines:
minikube/cmd/minikube/cmd/start_flags.go
Lines 333 to 335 in 6d9a5bf
minikube/pkg/minikube/machine/build_images.go
Lines 85 to 87 in 6d9a5bf
The none driver if statement was causing
n.Name
to bem01
, which then causednodeName != n.Name
to betrue
asnodeName
was empty butn.Name
wasm01
, hitting thecontinue
causing no build to occur.Before:
After: