build/devapp
Andrew Bonventre 92d565a7cf devapp,maintner: use ID instead of text for HelpWanted label
Add *GitHubIssue.HasLabelID method to maintner API.

Since the text will change to “help wanted”, adjust the logic to
make it a bit more future-proof.

Updates golang/go#22329

Change-Id: I22e9f06d6e2aca8ae4da31532f9cde2317a709ff
Reviewed-on: https://go-review.googlesource.com/83297
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-11 19:26:47 +00:00
..
static x/build/devapp: implement /reviews endpoint 2017-09-21 18:23:05 +00:00
templates devapp: place stars next to release-blocking issues 2017-11-22 19:25:10 +00:00
.gitignore devapp: remove App Engine code 2017-06-27 18:50:50 +00:00
Dockerfile devapp: remove godash code in favor of maintner 2017-07-22 21:35:17 +00:00
Dockerfile.0 devapp: update deps 2017-11-17 18:36:12 +00:00
Makefile all: normalize GKE configs/Makefiles to follow common patterns 2017-09-08 22:20:10 +00:00
README.md devapp: update README.md to clarify deployment steps 2017-07-26 21:11:19 +00:00
deployment-prod.yaml cmd,devapp,maintner: update kube configs with sane security defaults 2017-07-18 19:51:00 +00:00
deployment-staging.yaml devapp: update README.md to clarify deployment steps 2017-07-26 21:11:19 +00:00
devapp.go devapp: remove godash code in favor of maintner 2017-07-22 21:35:17 +00:00
gophercon.go x/build/devapp: check for nil Commit field causing panic 2017-09-22 19:37:53 +00:00
gophercon_test.go devapp: remove godash code in favor of maintner 2017-07-22 21:35:17 +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: various fixes and tweaks to /reviews based on feedback 2017-10-02 18:42:40 +00:00
server.go devapp,maintner: use ID instead of text for HelpWanted label 2017-12-11 19:26:47 +00:00
server_test.go devapp: add /dir/ redirect handler 2017-07-26 19:10:32 +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