From 298f63483cb938df80d8bd00c7dc6446e44460f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=89=E5=B0=8F=E9=BE=99?= Date: Fri, 6 Dec 2019 16:19:37 +0800 Subject: [PATCH] [Issue:5787] Fix docs for creating a K8S cluster on Minikube fail (#5805) Signed-off-by: xiaolong.ran Signed-off-by: xiaolong.ran Fixes #5787 ### Motivation When we creating a K8S cluster on Minikube, due to the different versions of Minikube in the local environment, the installation fails on `--kubernetes-version=v1.10.5`. ### Modifications - Remove the `--kubernetes-version=v1.10.5` in docs. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 36f16bc..7fed190 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,7 @@ or `hyperkit` or `VirtualBox` on macOS. #### Create a K8S cluster on Minikube ``` -minikube start --memory=8192 --cpus=4 \ - --kubernetes-version=v1.10.5 +minikube start --memory=8192 --cpus=4 ``` #### Set kubectl to use Minikube.