build/devapp
Andrew Bonventre 84ca227964 devapp: update contributor summit signup issue
Change-Id: Id19d7b8130ce89595c05231bbb3cf7d54b20edea
Reviewed-on: https://go-review.googlesource.com/132255
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2018-08-30 16:18:10 +00:00
..
owners devapp/owners: add myself to encoding/json 2018-08-27 03:47:02 +00:00
static devapp/owners: add /owners/ landing page 2018-05-10 17:43:25 +00:00
templates devapp: also hide open reviews with the tag "wait-release" 2018-05-17 16:59:59 +00:00
Dockerfile devapp: use multi-stage builds in Dockerfile 2018-04-13 20:30:09 +00:00
Makefile cmd/xb: add new safety command to double-check state of deployment commands 2018-05-08 16:47:14 +00:00
README.md devapp: update README.md to clarify deployment steps 2017-07-26 21:11:19 +00:00
deployment-prod.yaml devapp, cmd/gopherbot: increase RAM in k8s config 2018-08-13 16:56:14 +00:00
deployment-staging.yaml devapp, cmd/gopherbot: increase RAM in k8s config 2018-08-13 16:56:14 +00:00
devapp.go devapp: check for error from s.initCorpus 2018-08-02 21:57:06 +00:00
gophercon.go devapp: update contributor summit signup issue 2018-08-30 16:18:10 +00:00
gophercon_test.go devapp: remove godash code in favor of maintner 2017-07-22 21:35:17 +00:00
gzip.go devapp: gzip HTTP responses 2018-05-10 17:44:44 +00:00
release.go devapp: place stars next to release-blocking issues 2017-11-22 19:25:10 +00:00
release_test.go devapp: follow-up changes that were not submitted in 50652 2017-07-22 21:38:56 +00:00
reviews.go devapp: also hide open reviews with the tag "wait-release" 2018-05-17 16:59:59 +00:00
server.go devapp: add healthz endpoint and configure k8s readiness probe 2018-08-01 18:15:17 +00:00
server_test.go x/build/devapp: support title prefix filtering in HelpWanted handler 2018-02-23 18:42:13 +00:00
service-prod.yaml devapp: remove App Engine code 2017-06-27 18:50:50 +00:00
service-staging.yaml devapp: update README.md to clarify deployment steps 2017-07-26 21:11:19 +00:00

README.md

devapp

Local development

$ go build
$ ./devapp

Then visit http://localhost:6343

Deployment

Staging

$ gcloud config set project go-dashboard-dev
$ gcloud container clusters get-credentials --zone=us-central1-f go
$ make push-staging

If creating the deployment and service the first time:

$ kubectl create -f deployment-staging.yaml
$ kubectl create -f service-staging.yaml

If updating the pod image:

$ make deploy-staging

Prod

$ gcloud config set project symbolic-datum-552
$ gcloud container clusters get-credentials --zone=us-central1-f go
$ make push-prod

If creating the deployment and service the first time:

$ kubectl create -f deployment-prod.yaml
$ kubectl create -f service-prod.yaml

If updating the pod image:

$ make deploy-prod