Cut v0.10.0, also bump the ISO URL.

pull/594/head
dlorenc 2016-09-15 11:53:02 -07:00
parent 534c2634fc
commit edbaf1a8bf
4 changed files with 14 additions and 5 deletions

View File

@ -1,5 +1,14 @@
# Minikube Release Notes # Minikube Release Notes
## Version 0.10.0 - 9/15/2016
* Updated the Kubernetes dashboard to v1.4.0
* Added experimental rkt support
* Enabled DynamicProvisioning of volumes
* Improved the output of the `minikube status` command
* Added `minikube config get` and `minikube config set` commands
* Fixed a bug ensuring that the node IP is routable
* Renamed the created VM from minikubeVM to minikube
## Version 0.9.0 - 9/1/2016 ## Version 0.9.0 - 9/1/2016
* Added Hyper-V support for Windows * Added Hyper-V support for Windows
* Added debug-level logging for show-libmachine-logs * Added debug-level logging for show-libmachine-logs

View File

@ -16,8 +16,8 @@
export GO15VENDOREXPERIMENT=1 export GO15VENDOREXPERIMENT=1
# Bump these on release # Bump these on release
VERSION ?= v0.9.0 VERSION ?= v0.10.0
DEB_VERSION ?= 0.9-0 DEB_VERSION ?= 0.10-0
GOOS ?= $(shell go env GOOS) GOOS ?= $(shell go env GOOS)
GOARCH ?= $(shell go env GOARCH) GOARCH ?= $(shell go env GOARCH)

View File

@ -21,7 +21,7 @@ minikube start
--docker-env=[]: Environment variables to pass to the Docker daemon. (format: key=value) --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) --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 --insecure-registry=[]: Insecure Docker registries to pass to the Docker daemon
--iso-url="https://storage.googleapis.com/minikube/minikube-0.6.iso": Location of the minikube iso --iso-url="https://storage.googleapis.com/minikube/minikube-0.7.iso": Location of the minikube iso
--kubernetes-version="v1.3.5": The kubernetes version that the minikube VM will (ex: v1.2.3) --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) 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 --memory=1024: Amount of RAM allocated to the minikube VM

View File

@ -56,8 +56,8 @@ var LogFlags = [...]string{
} }
const ( const (
DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.6.iso" DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.7.iso"
DefaultIsoShaUrl = "https://storage.googleapis.com/minikube/minikube-0.6.iso.sha256" DefaultIsoShaUrl = "https://storage.googleapis.com/minikube/minikube-0.7.iso.sha256"
DefaultMemory = 1024 DefaultMemory = 1024
DefaultCPUS = 1 DefaultCPUS = 1
DefaultDiskSize = "20g" DefaultDiskSize = "20g"