├── .gitignore ├── BUILD.bazel ├── Dockerfile ├── LICENSE ├── README.md ├── WORKSPACE ├── handler.go ├── main.go ├── replicasets └── hello-universe.yaml ├── services └── hello-universe.yaml └── version.go /.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/WORKSPACE -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/handler.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/main.go -------------------------------------------------------------------------------- /replicasets/hello-universe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/replicasets/hello-universe.yaml -------------------------------------------------------------------------------- /services/hello-universe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/services/hello-universe.yaml -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelseyhightower/self-deploying-hello-universe/HEAD/version.go --------------------------------------------------------------------------------