There is only one bootstrapper left anyway

Remove the explicit --bootstrapper=kubeadm
pull/3191/head
Anders F Björklund 2018-09-30 15:25:56 +02:00
parent 27d8234d4b
commit d3b04139c0
1 changed files with 5 additions and 9 deletions

View File

@ -16,8 +16,7 @@ To use [CRI-O](https://github.com/kubernetes-incubator/cri-o) as the container r
```shell
$ minikube start \
--network-plugin=cni \
--container-runtime=cri-o \
--bootstrapper=kubeadm
--container-runtime=cri-o
```
Or you can use the extended version:
@ -27,8 +26,7 @@ $ minikube start \
--network-plugin=cni \
--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 \
--bootstrapper=kubeadm
--extra-config=kubelet.image-service-endpoint=/var/run/crio/crio.sock
```
### Using containerd
@ -38,8 +36,7 @@ To use [containerd](https://github.com/containerd/containerd) as the container r
```shell
$ minikube start \
--network-plugin=cni \
--container-runtime=containerd \
--bootstrapper=kubeadm
--container-runtime=containerd
```
Or you can use the extended version:
@ -49,6 +46,5 @@ $ minikube start \
--network-plugin=cni \
--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
```
--extra-config=kubelet.image-service-endpoint=unix:///run/containerd/containerd.sock
```