diff --git a/docs/minikube_start.md b/docs/minikube_start.md index 7b59aecb40..f1f96764a4 100644 --- a/docs/minikube_start.md +++ b/docs/minikube_start.md @@ -26,7 +26,7 @@ minikube start --host-only-cidr string The CIDR to be used for the minikube VM (only supported with Virtualbox driver) (default "192.168.99.1/24") --hyperv-virtual-switch string The hyperv virtual switch name. Defaults to first found. (only supported with HyperV driver) --insecure-registry stringSlice Insecure Docker registries to pass to the Docker daemon - --iso-url string Location of the minikube iso (default "https://storage.googleapis.com/minikube/iso/minikube-v1.0.3.iso") + --iso-url string Location of the minikube iso (default "https://storage.googleapis.com/minikube/iso/minikube-v1.0.5.iso") --keep-context This will keep the existing kubectl context and will create a minikube context. --kubernetes-version string The kubernetes version that the minikube VM will use (ex: v1.2.3) OR a URI which contains a localkube binary (ex: https://storage.googleapis.com/minikube/k8sReleases/v1.3.0/localkube-linux-amd64) (default "v1.5.2") diff --git a/pkg/minikube/constants/constants.go b/pkg/minikube/constants/constants.go index 50168edcd0..14c9271cca 100644 --- a/pkg/minikube/constants/constants.go +++ b/pkg/minikube/constants/constants.go @@ -60,7 +60,7 @@ var LogFlags = [...]string{ const ( DefaultKeepContext = false - DefaultIsoUrl = "https://storage.googleapis.com/minikube/iso/minikube-v1.0.3.iso" + DefaultIsoUrl = "https://storage.googleapis.com/minikube/iso/minikube-v1.0.5.iso" ShaSuffix = ".sha256" DefaultIsoShaUrl = DefaultIsoUrl + ShaSuffix DefaultMemory = 2048