Documentation: Cite CRI-O as available container runtime. closes #2207

Signed-off-by: Lorenzo Fontana <lo@linux.com>
pull/2208/head
Lorenzo Fontana 2017-11-19 00:40:35 +01:00
parent 8ee34ac322
commit c216a06c4a
No known key found for this signature in database
GPG Key ID: 0D48B0B074C3DC15
2 changed files with 23 additions and 0 deletions

View File

@ -7,3 +7,25 @@ $ minikube start \
--network-plugin=cni \
--container-runtime=rkt
```
### 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 \
--extra-config=image-service-endpoint=/var/run/crio.sock
```

View File

@ -6,6 +6,7 @@ It includes:
- systemd as the init system
- rkt
- docker
- CRI-O
## Hacking