Reputation: 6224
How do I start minikube with containerd instead of default docker ?
Upvotes: 2
Views: 2826
Reputation: 161
You can use the following command:
minikube start --container-runtime=containerd --cni=cilium
Here, Cilium (the Container Networking Interface) is an agent running on all cluster nodes and servers in your environment. It provides networking, security, and observability to the workloads running on that node. Workloads can be containerized or running natively on the system.
Upvotes: 6
Reputation: 6224
You can do it like this (from gvisor site)
minikube start --vm-driver="kvm2" --container-runtime=containerd --docker-opt containerd=/var/run/containerd/containerd.sock --docker-env="http_proxy=x.x.x.x:8080" --docker-env="https_proxy=x.x.x.x:8080" start
Upvotes: 1