-
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
rootless: support --container-runtime=docker
#17520
rootless: support --container-runtime=docker
#17520
Conversation
This allows running Kubernetes with (CRI-)Dockerd in Rootless Docker: ``` minikube start --rootless --driver=docker --container-runtime=docker ``` It is still recommended to use `--container-runtime=containerd`. Fix issue 17322 Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Can one of the admins verify this patch? |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: AkihiroSuda The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 48.4s 50.9s 51.5s 51.3s 52.2s Times for minikube (PR 17520) ingress: 27.2s 25.2s 24.3s 27.7s 26.7s docker driver with docker runtime
Times for minikube (PR 17520) start: 25.0s 24.7s 24.9s 25.7s 24.5s Times for minikube ingress: 18.8s 20.8s 20.8s 19.3s 20.8s docker driver with containerd runtime
Times for minikube ingress: 30.3s 31.3s 31.3s 31.3s 31.3s Times for minikube start: 23.7s 24.3s 23.6s 23.5s 23.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. |
This allows running Kubernetes with (CRI-)Dockerd in Rootless Docker:
It is still recommended to use
--container-runtime=containerd
.fixes #17322