-
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
pause each container separately #12318
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 48.4s 46.4s 47.1s 48.0s 47.9s Times for minikube ingress: 32.3s 31.7s 39.3s 39.8s 31.8s docker driver with docker runtime
Times for minikube (PR 12318) start: 22.0s 21.1s 21.5s 21.1s 22.6s Times for minikube ingress: 36.5s 35.0s 36.0s 36.0s 35.5s docker driver with containerd runtime
Times for minikube start: 31.9s 44.1s 43.7s 44.4s 43.7s |
The Docker Linux containerd pause tests failed, but for reasons unrelated to the fix I'm making here. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh, sharifelgamal 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 |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
Our containerd pause tests are failing with the following error:
The issue is that we're appending each container id as we pause each one, which is not correct. This change fixes that.