kubernetes/examples/guestbook-go/_src
Jess Frazelle cde5559d09
Update gcloud docker commands to use gcloud docker -- ARGS
We can then avoid the following warning:
```
WARNING: The '--' argument must be specified between gcloud specific args on the left and DOCKER_ARGS on the right. IMPORTANT: previously, commands allowed the omission of the --, and unparsed arguments were treated as implementation args. This usage is being deprecated and will be removed in March 2017.
This will be strictly enforced in March 2017. Use 'gcloud beta docker' to see new behavior.
```

Signed-off-by: Jess Frazelle <acidburn@google.com>
2016-10-10 13:42:34 -07:00
..
guestbook Remove "All rights reserved" from all the headers. 2016-06-29 17:47:36 -07:00
public Make guestbook-go url paths relative to survive multiple proxies 2015-07-22 15:20:22 -07:00
Dockerfile Remove "All rights reserved" from all the headers. 2016-06-29 17:47:36 -07:00
main.go Remove "All rights reserved" from all the headers. 2016-06-29 17:47:36 -07:00
Makefile Update gcloud docker commands to use gcloud docker -- ARGS 2016-10-10 13:42:34 -07:00
README.md Update the latestReleaseBranch to release-1.4 in the munger. 2016-09-01 14:40:55 -07:00

WARNING WARNING WARNING WARNING WARNING

PLEASE NOTE: This document applies to the HEAD of the source tree

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.4/examples/guestbook-go/_src/README.md).

Documentation for other releases can be found at releases.k8s.io.

Building and releasing Guestbook Image

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. You can specify the registry including the user account by setting the environment variable REGISTRY.

To build and release the guestbook image:

cd examples/guestbook-go/_src
make release

To build and release the guestbook image with a different registry and version:

VERSION=v4 REGISTRY="docker.io/luebken" make build

If you want to, you can build and push the image step by step:

make clean
make build
make push

Analytics