Fix up source install instructions for VSphere

I skip using `go get` as it downloads all of the dependencies. But since we are vendoring using godep without rewriting imports, this means we download a bunch of stuff we don't use.  Instead, just clone the repo directly.

Fixes #1360.
pull/6/head
Joe Beda 2014-09-18 09:06:50 -07:00
parent 4487f311ab
commit a1071288ae
1 changed files with 3 additions and 2 deletions

View File

@ -23,8 +23,9 @@
6. Get the Kubernetes source: 6. Get the Kubernetes source:
```sh ```sh
go get github.com/GoogleCloudPlatform/kubernetes mkdir -p $GOPATH/src/github.com/GoogleCloudPlatform
cd $GOPATH/src/github.com/GoogleCloudPlatform/kubernetes git clone https://github.com/GoogleCloudPlatform/kubernetes.git
cd kubernetes
``` ```
### Setup ### Setup