Suggest alternative to curl for Windows.

This commit is contained in:
Keith Wansbrough 2016-10-19 12:04:25 +01:00 committed by GitHub
parent 0903054357
commit eb5f7add4b
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/{{page
curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/{{page.version}}.0/bin/darwin/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
# OS X/386
curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/{{page.version}}.0/bin/darwin/386/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
# Windows
# Windows (using curl; or use your browser "save link as...")
curl -Lo kubectl.exe http://storage.googleapis.com/kubernetes-release/release/{{page.version}}.0/bin/windows/amd64/kubectl.exe
```