Russ Cox would like Brad Fitzpatrick to review this change.
cmd/pushback: update deploy instructions Change-Id: I0e2da21255f547c3e8aa5f48c8bbbe7d060f5dc4 --- M cmd/pushback/README A cmd/pushback/deploy.bash 2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/cmd/pushback/README b/cmd/pushback/README index 7e3247a..79e5469 100644 --- a/cmd/pushback/README +++ b/cmd/pushback/README @@ -1,7 +1,6 @@ This service runs as a Google Managed VM. -Use the gcloud tool to deploy: -$ gcloud --project symbolic-datum-552 preview app deploy --no-promote app.yaml +Deploy with ./deploy.bash. Then use the Cloud Console to set the new version as the default, and delete the old instance (lest it keep running): diff --git a/cmd/pushback/deploy.bash b/cmd/pushback/deploy.bash new file mode 100755 index 0000000..f65638f --- /dev/null +++ b/cmd/pushback/deploy.bash @@ -0,0 +1,4 @@ +#!/bin/bash + +go get google.golang.org/appengine/cmd/aedeploy +aedeploy gcloud --project symbolic-datum-552 app deploy --no-promote app.yaml
To view, visit this change. To unsubscribe, visit settings.
Brad Fitzpatrick posted comments on this change.
Patch Set 1: Code-Review+2
To view, visit this change. To unsubscribe, visit settings.
Russ Cox merged this change.
cmd/pushback: update deploy instructions Change-Id: I0e2da21255f547c3e8aa5f48c8bbbe7d060f5dc4 Reviewed-on: https://go-review.googlesource.com/34617 Run-TryBot: Russ Cox <r...@golang.org> Reviewed-by: Brad Fitzpatrick <brad...@golang.org> --- M cmd/pushback/README A cmd/pushback/deploy.bash 2 files changed, 5 insertions(+), 2 deletions(-)