-
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 network not found not being detected on new Docker versions #17323
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: 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 |
/ok-to-test |
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 53.0s 51.4s 52.5s 50.1s 51.7s Times for minikube ingress: 27.7s 28.2s 29.1s 28.2s 29.6s docker driver with docker runtime
Times for minikube ingress: 20.8s 20.8s 22.8s 20.8s 20.8s Times for minikube start: 25.5s 22.6s 24.5s 24.0s 24.8s docker driver with containerd runtime
Times for minikube start: 21.0s 20.0s 19.8s 23.9s 19.9s Times for minikube ingress: 19.3s 31.3s 19.3s 31.3s 47.3s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
Fixes #17278
Docker 20.X.X and before returns
No such network
when network isn't foundDocker 23.X.X and later returns
network %s not found
when network isn't foundWe only had a check for
No such network
so we were outputting an error on newer versions of DockerBefore
After: