If you are using a released version of Kubernetes, you should refer to the docs that go with that version.
The latest release of this document can be found [here](http://releases.k8s.io/release-1.1/examples/guestbook-go/_src/README.md).Documentation for other releases can be found at releases.k8s.io.
This process employs building two docker images, one compiles the source and the other hosts the compiled binaries.
Releasing the image requires that you have access to the docker registry user account which will host the image.
To build and release the guestbook image:
cd examples/guestbook-go/_src
./script/release.sh
If you may want to, you can build and push the image step by step.
./script/clean.sh 2> /dev/null
Builds a docker image that builds the app and packages it into a minimal docker image
./script/build.sh
Accepts an optional tag (defaults to "latest")
./script/push.sh [TAG]
./script/clean.sh