2017-05-03 21:53:51 +00:00
|
|
|
### Using rkt container engine
|
|
|
|
|
|
|
|
To use [rkt](https://github.com/coreos/rkt) as the container runtime run:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ minikube start \
|
|
|
|
--network-plugin=cni \
|
2017-06-17 23:09:39 +00:00
|
|
|
--container-runtime=rkt
|
|
|
|
```
|
2017-11-18 23:40:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
### Using CRI-O
|
|
|
|
|
|
|
|
To use [CRI-O](https://github.com/kubernetes-incubator/cri-o) as the container runtime, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ minikube start \
|
|
|
|
--network-plugin=cni \
|
|
|
|
--container-runtime=cri-o \
|
|
|
|
--bootstrapper=kubeadm
|
|
|
|
```
|
|
|
|
|
|
|
|
Or you can use the extended version:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ minikube start \
|
|
|
|
--network-plugin=cni \
|
|
|
|
--extra-config=kubelet.container-runtime=remote \
|
|
|
|
--extra-config=kubelet.container-runtime-endpoint=/var/run/crio.sock \
|
2017-11-27 11:03:42 +00:00
|
|
|
--extra-config=kubelet.image-service-endpoint=/var/run/crio.sock
|
2017-11-18 23:40:35 +00:00
|
|
|
```
|