Skip to content

Commit

Permalink
Add the --cri-socket parameter to configuration
Browse files Browse the repository at this point in the history
Also fix the syntax for CRI-O, adding unix://
  • Loading branch information
afbjorklund committed Sep 30, 2018
1 parent befaba6 commit c9ad4e3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/alternative_runtimes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ Or you can use the extended version:
```shell
$ minikube start \
--network-plugin=cni \
--cri-socket=/var/run/crio/crio.sock \
--extra-config=kubelet.container-runtime=remote \
--extra-config=kubelet.container-runtime-endpoint=/var/run/crio/crio.sock \
--extra-config=kubelet.image-service-endpoint=/var/run/crio/crio.sock \
--extra-config=kubelet.container-runtime-endpoint=unix:///var/run/crio/crio.sock \
--extra-config=kubelet.image-service-endpoint=unix:///var/run/crio/crio.sock \
--bootstrapper=kubeadm
```

Expand All @@ -47,8 +48,9 @@ Or you can use the extended version:
```shell
$ minikube start \
--network-plugin=cni \
--cri-socket=/run/containerd/containerd.sock \
--extra-config=kubelet.container-runtime=remote \
--extra-config=kubelet.container-runtime-endpoint=unix:///run/containerd/containerd.sock \
--extra-config=kubelet.image-service-endpoint=unix:///run/containerd/containerd.sock \
--bootstrapper=kubeadm
```
```

0 comments on commit c9ad4e3

Please sign in to comment.