-
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 trying to pause multiple containers with runc #13783
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 53.5s 52.1s 52.8s 52.0s 52.1s Times for minikube ingress: 30.0s 26.6s 29.1s 29.5s 25.5s docker driver with docker runtime
Times for minikube (PR 13783) start: 24.7s 26.3s 26.8s 25.5s 25.9s Times for minikube ingress: 21.9s 21.5s 21.4s 21.9s 20.9s docker driver with containerd runtime
Times for minikube (PR 13783) start: 40.9s 41.6s 41.1s 45.3s 41.5s Times for minikube ingress: 19.9s 23.4s 23.4s 29.9s 18.9s |
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. |
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.
LGTM!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: klaases, 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 #12284
Problem:
runc
only supports pausing one container at a time. The container IDs were being looped over properly, but was appending to the previous command causing multiple container IDs being provided.Before:
After: