From 8f1462452a0ba21cdcff5dfeac7c28495491dbc1 Mon Sep 17 00:00:00 2001 From: Jeff Lowdermilk Date: Tue, 17 Mar 2015 13:36:43 -0700 Subject: [PATCH] Update getting-started-guides/gce.md for using prebuilt release Remove instructions for hack/build-go.sh. Client binaries are included in official release tars. --- docs/getting-started-guides/gce.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/getting-started-guides/gce.md b/docs/getting-started-guides/gce.md index 3d4b2f77331..10781019ca8 100644 --- a/docs/getting-started-guides/gce.md +++ b/docs/getting-started-guides/gce.md @@ -47,8 +47,12 @@ field values: ### Running a container (simple version) -Once you have your instances up and running, the `hack/build-go.sh` script sets up -your Go workspace and builds the Go components. +Once you have your instances up and running, use cluster/kubectl.sh to access +the kubernetes api. + +Note: if you built the release from source you will need to run `hack/build-go.sh` to +build the go components, which include the `kubectl` commandline client. If you are +using a prebuilt release, the built client binaries are already included. The `kubectl.sh` line below spins up two containers running [Nginx](http://nginx.org/en/) running on port 80: @@ -71,10 +75,6 @@ cluster/kubectl.sh delete rc my-nginx ### Running a container (more complete version) - -Assuming you've run `hack/dev-build-and-up.sh` and `hack/build-go.sh`, you -can create a pod like this: - ```bash cd kubernetes cluster/kubectl.sh create -f docs/getting-started-guides/pod.json