Complete the code to deploy a new revision of a Cloud Run service.
gcloud run deploy my-service --image gcr.io/my-project/my-image:[1] --region us-central1The revision tag v1 specifies the version of the container image to deploy as a new revision.
Complete the command to list all revisions of a Cloud Run service.
gcloud run revisions list --service=[1] --region us-central1The --service flag requires the name of the Cloud Run service, here my-service, to list its revisions.
Fix the error in the command to delete a specific revision.
gcloud run revisions delete [1] --region us-central1 --service my-serviceThe revision name like my-service-00001-abc uniquely identifies the revision to delete.
Fill both blanks to set traffic to 100% on a specific revision.
gcloud run services update-traffic my-service --to-revisions [1]=100 --region [2]
Use the revision name my-service-00002-def and the region us-central1 to route all traffic to that revision.
Fill all three blanks to create a new revision with environment variables and specify the region.
gcloud run deploy my-service --image gcr.io/my-project/my-image:[1] --set-env-vars [2]=production --region [3]
Deploy revision v2 with environment variable ENV=production in region us-east1.