├── .gitignore ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── cloudbuild.yaml ├── deploy ├── pipeline.yaml ├── prod.yaml └── staging.yaml ├── go.mod ├── go.sum ├── index.html ├── k8s ├── base │ ├── deployments │ │ ├── deployment.yaml │ │ └── kustomization.yaml │ ├── rbac │ │ ├── kustomization.yaml │ │ └── rbac.yaml │ └── services │ │ ├── kustomization.yaml │ │ └── service.yaml ├── dev │ ├── deployment.yaml │ ├── kustomization.yaml │ └── redis.yaml ├── prod │ ├── deployment.yaml │ ├── kustomization.yaml │ └── redis.yaml └── staging │ ├── deployment.yaml │ ├── kustomization.yaml │ └── redis.yaml ├── main.go ├── main_test.go ├── redis.go ├── skaffold.yaml └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/README.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /deploy/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/deploy/pipeline.yaml -------------------------------------------------------------------------------- /deploy/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/deploy/prod.yaml -------------------------------------------------------------------------------- /deploy/staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/deploy/staging.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/go.sum -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/index.html -------------------------------------------------------------------------------- /k8s/base/deployments/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/base/deployments/deployment.yaml -------------------------------------------------------------------------------- /k8s/base/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/base/deployments/kustomization.yaml -------------------------------------------------------------------------------- /k8s/base/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/base/rbac/kustomization.yaml -------------------------------------------------------------------------------- /k8s/base/rbac/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/base/rbac/rbac.yaml -------------------------------------------------------------------------------- /k8s/base/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/base/services/kustomization.yaml -------------------------------------------------------------------------------- /k8s/base/services/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/base/services/service.yaml -------------------------------------------------------------------------------- /k8s/dev/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/dev/deployment.yaml -------------------------------------------------------------------------------- /k8s/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/dev/kustomization.yaml -------------------------------------------------------------------------------- /k8s/dev/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/dev/redis.yaml -------------------------------------------------------------------------------- /k8s/prod/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/prod/deployment.yaml -------------------------------------------------------------------------------- /k8s/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/prod/kustomization.yaml -------------------------------------------------------------------------------- /k8s/prod/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/prod/redis.yaml -------------------------------------------------------------------------------- /k8s/staging/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/staging/deployment.yaml -------------------------------------------------------------------------------- /k8s/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/staging/kustomization.yaml -------------------------------------------------------------------------------- /k8s/staging/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/k8s/staging/redis.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/main_test.go -------------------------------------------------------------------------------- /redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/redis.go -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/skaffold.yaml -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/golden-path-for-app-delivery/HEAD/test.sh --------------------------------------------------------------------------------