@@ -39,11 +39,11 @@ See [Kubernetes Versions](https://deis.com/docs/workflow/installing-workflow/sys
3939This archive has everything that you need to launch Kubernetes. It's a fairly large archive, so it may take some time to download:
4040
4141```
42- $ curl -sSL https://storage.googleapis.com/kubernetes-release/release/v1.3.5 /kubernetes.tar.gz -O
42+ $ curl -sSL https://storage.googleapis.com/kubernetes-release/release/v1.5.2 /kubernetes.tar.gz -O
4343$ tar -xvzf kubernetes.tar.gz
4444$ cd kubernetes
4545$ ls
46- LICENSES README.md Vagrantfile cluster / contrib / docs/ examples/ platforms/ server/ third_party/ version
46+ LICENSES README.md Vagrantfile client / cluster / docs/ examples/ federation/ server/ third_party/ version
4747```
4848
4949## Configure the Kubernetes Environment
@@ -74,22 +74,14 @@ Last, so you can easily identify instances in the AWS Console, specify an instan
7474export KUBE_AWS_INSTANCE_PREFIX=first-k8s
7575```
7676
77- ## Setup kubectl CLI
77+ ## Set up kubectl CLI
7878
79- Very soon, we will need to use ` kubectl ` to check everything is running smoothly and
80- for that let's get it on the $PATH.
79+ We will need to use ` kubectl ` to check everything is running smoothly, so let's get it on the $PATH.
8180
82- For Mac OS, run:
83-
84- $ ln -fs $PWD/platforms/darwin/amd64/kubectl /usr/local/bin/kubectl
85-
86- For Linux, use this instead:
87-
88- $ sudo ln -fs $PWD/platforms/linux/amd64/kubectl /usr/local/bin/kubectl
89-
90- !!! note
91- If you are using any other architecture, you can look at the ` platforms/<os>/<arch> `
92- tree to see all the available binaries
81+ ```
82+ ./cluster/get-kube-binaries.sh
83+ export PATH=$PATH:$PWD/client/bin
84+ ```
9385
9486## Boot Your First Cluster
9587
@@ -102,15 +94,11 @@ $ ./cluster/kube-up.sh
10294Creating a kubernetes on aws...
10395... Starting cluster in us-west-1c using provider aws
10496... calling verify-prereqs
97+ ... calling verify-kube-binaries
10598... calling kube-up
10699Starting cluster using os distro: jessie
107100Uploading to Amazon S3
108- +++ Staging server tars to S3 Storage: kubernetes-staging-52e3410afddda7a4600f10ee5b1e43fb/devel
109- upload:
110- Uploaded server tars:
111- SERVER_BINARY_TAR_URL: ...
112- SALT_TAR_URL: ...
113- BOOTSTRAP_SCRIPT_URL: ...
101+ ...
114102```
115103
116104Here, we have downloaded the Kubernetes release archive and started the process of cluster provisioning. Release
0 commit comments