-
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
containerd service is running on docker driver with docker run time #7433
Comments
Since dockerd depends on containerd, I think that this situation is normal ? Previously it had custom docker-runc and docker-containerd, but not anymore. https://docs.docker.com/engine/release-notes/18.09/#important-notes-about-this-release-1
|
minikube/pkg/provision/ubuntu.go Line 78 in 792ca8e
I just saw this that only for ubuntu provisioner (kic provisioner) we add bind to containerd and when I remove it it will get stuck in kubeadm init. @afbjorklund why in VM world we dont have containerd service running but only in kic world ? also if docker service has to have containerd service running, then we need to disable the logic to DISABLE other container run times.... (because for docker it will disable containerd (which api server is running on it) that willi cause an un-needed False needsReset() what do youu think we should do about it ? |
from minikube logs for docker driver on a soft start I see that it is trying to stop other container run time services
i believe the problem is on ubuntu I install docker for ubuntu which requires containerd but in the VM the buildroot does not rquired containerd |
The VM has two different containerd running:
/usr/lib/systemd/system/docker.service
/usr/lib/systemd/system/containerd.service That is, Docker will start containerd itself if not running... |
The minikube docker.service has this configuration:
The ubuntu docker.service has this configuration:
|
Can we close this because the mystery is solved? |
While trying to figure out why minikube soft start on docker driver takes longer than VM (#7432)
I noticed on docker driver the containerd service is running but in VM its NOT !
on docker driver:
on VM hyperkit:
The text was updated successfully, but these errors were encountered: