From d3b04139c08d95ec2dd20d5d6619d229a727d566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Sun, 30 Sep 2018 15:25:56 +0200 Subject: [PATCH] There is only one bootstrapper left anyway Remove the explicit --bootstrapper=kubeadm --- docs/alternative_runtimes.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/docs/alternative_runtimes.md b/docs/alternative_runtimes.md index fa39b8fe3b..4128d3d239 100644 --- a/docs/alternative_runtimes.md +++ b/docs/alternative_runtimes.md @@ -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 -``` \ No newline at end of file + --extra-config=kubelet.image-service-endpoint=unix:///run/containerd/containerd.sock +```