Merge pull request #450 from crizCraig/patch-1

Robustify kubectl download commands
This commit is contained in:
johndmulhausen
2016-04-29 16:21:18 -07:00
+2 -2
View File
@@ -73,7 +73,7 @@ variable.
For example, OS X:
```shell
curl -O http://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/darwin/amd64/kubectl
curl -O "http://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/darwin/amd64/kubectl"
chmod 755 kubectl
PATH=$PATH:`pwd`
```
@@ -81,7 +81,7 @@ PATH=$PATH:`pwd`
Linux:
```shell
wget http://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl
wget "http://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl"
chmod 755 kubectl
PATH=$PATH:`pwd`
```