diff options
author | Ty Davis <tydavis@gmail.com> | 2016-06-01 16:40:32 -0700 |
---|---|---|
committer | Ty Davis <tydavis@gmail.com> | 2016-06-01 16:40:32 -0700 |
commit | f36a3e03968c8d7ff5c7edc878bd0fb6865a3566 (patch) | |
tree | 5d26332669ae1102cdad8ae158b70a2acad56508 | |
parent | fc9faa7b0d6a60ba9267162a15ebdd0c0b72de39 (diff) | |
download | show-readiness-f36a3e03968c8d7ff5c7edc878bd0fb6865a3566.tar.gz show-readiness-f36a3e03968c8d7ff5c7edc878bd0fb6865a3566.zip |
Add a readme
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..62defcc --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# showReadiness + +A simple golang application to explore [liveness and readiness checks](http://kubernetes.io/docs/user-guide/pod-states/) in Kubernetes. + +## To build +``` +CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -installsuffix netgo -ldflags '-w' . +``` |