We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This looks broken:
minikube start --no-kubernetes --vm --container-runtime=containerd
🏄 Done! minikube is ready without Kubernetes!
$ minikube ssh -- pstree systemd-+-acpid |-2*[agetty] |-crio---11*[{crio}] |-dbus-daemon |-rpc.mountd |-rpc.statd |-rpcbind |-sshd---sshd---sshd---pstree |-systemd-hostnam |-systemd-journal |-systemd-logind |-systemd-network |-systemd-resolve |-systemd-timesyn---{systemd-timesyn} `-systemd-udevd---20*[systemd-udevd]
It was supposed to run containerd, not crio ?
$ minikube ssh -- sudo ctr version Client: Version: v1.4.12 Revision: 7b11cfaabd73bb80907dd23182b9347b4245eb5d Go version: go1.17 ctr: failed to dial "/run/containerd/containerd.sock": context deadline exceeded ssh: Process exited with status 1
When running with docker, it would start both.
(This is because CRI-O is started on boot of VM)
The text was updated successfully, but these errors were encountered:
/assign
Sorry, something went wrong.
It is missing a call to configureRuntimes, before the configureMounts (and return):
configureRuntimes
configureMounts
stopk8s, err := handleNoKubernetes(starter) if err != nil { return nil, err } if stopk8s { configureMounts(&wg, *starter.Cfg) return nil, config.Write(viper.GetString(config.ProfileName), starter.Cfg) }
MdSahil-oss
Successfully merging a pull request may close this issue.
This looks broken:
minikube start --no-kubernetes --vm --container-runtime=containerd
🏄 Done! minikube is ready without Kubernetes!
It was supposed to run containerd, not crio ?
When running with docker, it would start both.
(This is because CRI-O is started on boot of VM)
The text was updated successfully, but these errors were encountered: