-
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
podman: Fix network not getting deleted #12627
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 48.8s 46.6s 47.2s 47.2s 46.9s Times for minikube ingress: 31.7s 34.3s 32.8s 32.4s 32.4s docker driver with docker runtime
Times for minikube ingress: 33.9s 26.4s 36.9s 35.9s 36.4s Times for minikube start: 23.2s 22.5s 20.9s 21.7s 21.0s docker driver with containerd runtime
Times for minikube start: 30.7s 43.1s 41.6s 36.5s 43.6s Times for minikube ingress: 43.4s 52.9s 36.4s 26.9s 23.9s |
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, sharifelgamal, 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 |
Fixes #12585
Problem:
The root of the issue is when we delete the KIC networks we search for ones with the label
created_by.minikube.sigs.k8s.io
, however the line to append the label to the network on creation was nested within a Docker if statement and wasn't being added to Podman networks.Solution:
Just moved the label append outside the if, also added a test to catch this in the future.