Skip to content

Commit

Permalink
Merge pull request kubernetes#21804 from vmware/vsphere-documentation…
Browse files Browse the repository at this point in the history
…-fix

Auto commit by PR queue bot
  • Loading branch information
k8s-merge-robot committed Mar 3, 2016
2 parents 2cf3c78 + 28b40be commit 64e7841
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions docs/getting-started-guides/vsphere.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Import this VMDK into your vSphere datastore:

```sh
export GOVC_URL='hostname' # hostname of the vc
export GOVC_USER='username' # username for logging into the vsphere.
export GOVC_USERNAME='username' # username for logging into the vsphere.
export GOVC_PASSWORD='password' # password for the above username
export GOVC_NETWORK='Network Name' # Name of the network the vms should join. Many times it could be "VM Network"
export GOVC_INSECURE=1 # If the host above uses a self-signed cert
Expand All @@ -104,10 +104,19 @@ parameters. The guest login for the image that you imported is `kube:kube`.
Now, let's continue with deploying Kubernetes.
This process takes about ~20-30 minutes depending on your network.

#### From extracted binary release

```sh
cd kubernetes
KUBERNETES_PROVIDER=vsphere cluster/kube-up.sh
```

#### Build from source

```sh
cd kubernetes # Extracted binary release OR repository root
export KUBERNETES_PROVIDER=vsphere
cluster/kube-up.sh
cd kubernetes
make release
KUBERNETES_PROVIDER=vsphere cluster/kube-up.sh
```

Refer to the top level README and the getting started guide for Google Compute
Expand Down

0 comments on commit 64e7841

Please sign in to comment.