提交 0a71dd29 编写于 作者: D dlorenc 提交者: GitHub

Merge pull request #272 from dlorenc/release

Bump to v0.5.0, add release notes and increment the releases.json.
# Minikube Release Notes # Minikube Release Notes
## Version 0.5.0 - 7/6/2016
* Updated Kubernetes components to v1.3.0
* Added experimental support for KVM and XHyve based drivers. See the [drivers documentation](DRIVERS.md) for usage.
* Fixed a bug causing cluster state to be deleted after a `minikube stop`.
* Fixed a bug causing the minikube logs to fill up rapidly.
* Added a new `minikube service` command, to open a browser to the URL for a given service.
* Added a `--cpus` flag to `minikube start`.
## Version 0.4.0 - 6/27/2016 ## Version 0.4.0 - 6/27/2016
* Updated Kubernetes components to v1.3.0-beta.1 * Updated Kubernetes components to v1.3.0-beta.1
* Updated the Kubernetes Dashboard to v1.1.0 * Updated the Kubernetes Dashboard to v1.1.0
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
export GO15VENDOREXPERIMENT=1 export GO15VENDOREXPERIMENT=1
# Bump this on release # Bump this on release
VERSION ?= v0.4.0 VERSION ?= v0.5.0
GOOS ?= $(shell go env GOOS) GOOS ?= $(shell go env GOOS)
GOARCH ?= $(shell go env GOARCH) GOARCH ?= $(shell go env GOARCH)
......
[ [
{
"name": "v0.5.0"
},
{ {
"name": "v0.4.0" "name": "v0.4.0"
}, },
......
...@@ -16,7 +16,7 @@ minikube start ...@@ -16,7 +16,7 @@ minikube start
``` ```
--cpus=1: Number of CPUs allocated to the minikube VM --cpus=1: Number of CPUs allocated to the minikube VM
--iso-url="https://storage.googleapis.com/minikube/minikube-0.4.iso": Location of the minikube iso --iso-url="https://storage.googleapis.com/minikube/minikube-0.5.iso": Location of the minikube iso
--memory=1024: Amount of RAM allocated to the minikube VM --memory=1024: Amount of RAM allocated to the minikube VM
--vm-driver="virtualbox": VM driver is one of: [virtualbox vmwarefusion kvm xhyve] --vm-driver="virtualbox": VM driver is one of: [virtualbox vmwarefusion kvm xhyve]
``` ```
......
...@@ -55,7 +55,7 @@ var SupportedVMDrivers = [...]string{ ...@@ -55,7 +55,7 @@ var SupportedVMDrivers = [...]string{
} }
const ( const (
DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.4.iso" DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.5.iso"
DefaultMemory = 1024 DefaultMemory = 1024
DefaultCPUS = 1 DefaultCPUS = 1
DefaultVMDriver = "virtualbox" DefaultVMDriver = "virtualbox"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册