Merge pull request #332 from idvoretskyi/patch-3

Updated latest Kubernetes version
This commit is contained in:
johndmulhausen 2016-04-13 13:38:02 -07:00
commit f8ed02241a
1 changed files with 2 additions and 2 deletions

View File

@ -3,13 +3,13 @@
We'll begin by setting up the master node. For the purposes of illustration, we'll assume that the IP of this machine
is `${MASTER_IP}`. We'll need to run several versioned Kubernetes components, so we'll assume that the version we want
to run is `${K8S_VERSION}`, which should hold a released version of Kubernetes >= "1.2.0-alpha.7"
to run is `${K8S_VERSION}`, which should hold a released version of Kubernetes >= "1.2.1"
Enviroinment variables used:
```shell
export MASTER_IP=<the_master_ip_here>
export K8S_VERSION=<your_k8s_version (e.g. 1.2.0-alpha.7)>
export K8S_VERSION=<your_k8s_version (e.g. 1.2.1)>
export ETCD_VERSION=<your_etcd_version (e.g. 2.2.1)>
export FLANNEL_VERSION=<your_flannel_version (e.g. 0.5.5)>
export FLANNEL_IFACE=<flannel_interface (defaults to eth0)>