-
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
Add groups check to SSH driver #15513
Conversation
Welcome @kaylendog! |
Hi @kaylendog. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Can one of the admins verify this patch? |
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.
Sounds good to me, but it could still require (passwordless) sudo for other operations
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: afbjorklund, kaylendog 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 |
Yes, I'm intending this to be more of a quick patch to enable minikube to get pass the usermod command. There's definitely some more stuff to do here! |
Sounds reasonable to avoid the redundant commands, I think it was a "quick fix" for bugs in the provisioner: 1663a03 <-- a0d2c1a <-- 7c5ba62 For legacy reasons it assumed that docker is in the "docker" root group, but that podman is run by using Once the rootless drivers entered the scene, it was supposed to be done in a more orderly fashion But since this is the bare metal (well, virtual machine) drivers - that applies to the cluster container runtime. |
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 52.4s 53.6s 53.5s 53.3s 53.1s Times for minikube ingress: 27.6s 28.6s 28.7s 29.7s 28.7s docker driver with docker runtime
Times for minikube start: 27.6s 25.1s 25.1s 25.5s 29.2s Times for minikube ingress: 20.9s 81.0s 49.0s 22.4s 21.4s docker driver with containerd runtime
Times for minikube ingress: 26.4s 26.5s 26.5s 27.4s 25.9s Times for minikube start: 22.2s 25.2s 22.4s 22.5s 22.1s |
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. |
Adds a groups check to avoid adding SSH users to the
docker
group if they're already in thedocker
group.fixes #15512