gcloud run is now GA, s/beta// (#660)

Thanks, @glasnt
This commit is contained in:
Katie McLaughlin 2020-01-22 10:28:11 +11:00 committed by Simon Willison
commit 34d77d780f
3 changed files with 5 additions and 5 deletions

View file

@ -62,7 +62,7 @@ Service name: input-service
[
mock.call("gcloud builds submit --tag {}".format(tag), shell=True),
mock.call(
"gcloud beta run deploy --allow-unauthenticated --platform=managed --image {} input-service".format(
"gcloud run deploy --allow-unauthenticated --platform=managed --image {} input-service".format(
tag
),
shell=True,
@ -89,7 +89,7 @@ def test_publish_cloudrun(mock_call, mock_output, mock_which):
[
mock.call("gcloud builds submit --tag {}".format(tag), shell=True),
mock.call(
"gcloud beta run deploy --allow-unauthenticated --platform=managed --image {} test".format(
"gcloud run deploy --allow-unauthenticated --platform=managed --image {} test".format(
tag
),
shell=True,