diff --git a/Makefile b/Makefile index 8728a950194c8af5edf451bee1a1d9999ec80dc8..22a45b5c44cec87e97ead62e90d4c154bb5c8bf4 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ export GO15VENDOREXPERIMENT=1 # Bump this on release -VERSION ?= v0.7.1 +VERSION ?= v0.8.0 GOOS ?= $(shell go env GOOS) GOARCH ?= $(shell go env GOARCH) diff --git a/deploy/minikube/k8s_releases.json b/deploy/minikube/k8s_releases.json index fecd1dcc62338fc11de0b004bd851a29c1a53f2e..1708f6bda8b0831d6aa83658b50efdefb7aa7383 100644 --- a/deploy/minikube/k8s_releases.json +++ b/deploy/minikube/k8s_releases.json @@ -1,4 +1,7 @@ [ + { + "version": "v1.3.5" + }, { "version": "v1.3.4" }, diff --git a/docs/minikube_start.md b/docs/minikube_start.md index a38f39d494ee635a0d42fa48f9901f7453b4c780..c8f33fa69b8f3eb0afc8ea35c979855754a370ac 100644 --- a/docs/minikube_start.md +++ b/docs/minikube_start.md @@ -20,7 +20,7 @@ minikube start --docker-env=[]: Environment variables to pass to the Docker daemon. (format: key=value) --host-only-cidr="192.168.99.1/24": The CIDR to be used for the minikube VM (only supported with Virtualbox driver) --insecure-registry=[]: Insecure Docker registries to pass to the Docker daemon - --iso-url="https://storage.googleapis.com/minikube/minikube-0.5.iso": Location of the minikube iso + --iso-url="https://storage.googleapis.com/minikube/minikube-0.6.iso": Location of the minikube iso --kubernetes-version="v1.3.5": The kubernetes version that the minikube VM will (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) --memory=1024: Amount of RAM allocated to the minikube VM diff --git a/pkg/minikube/constants/constants.go b/pkg/minikube/constants/constants.go index ff2712c2067322cf2bde19f3e8c38ecc628eac03..1b74ce793faf5effdc5b4518f3ad142100acff01 100644 --- a/pkg/minikube/constants/constants.go +++ b/pkg/minikube/constants/constants.go @@ -56,7 +56,7 @@ var LogFlags = [...]string{ } const ( - DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.5.iso" + DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.6.iso" DefaultMemory = 1024 DefaultCPUS = 1 DefaultDiskSize = "20g"