Complete the code to deploy a Cloud Run service with the correct command.
gcloud run deploy my-service --image [1] --region us-central1The --image flag requires the full container image URL, such as gcr.io/my-project/my-image.
Complete the code to specify the platform when deploying a Cloud Run service.
gcloud run deploy my-service --image gcr.io/my-project/my-image --platform [1]The --platform managed flag tells Cloud Run to use the fully managed environment.
Fix the error in the command to allow unauthenticated access to the Cloud Run service.
gcloud run deploy my-service --image gcr.io/my-project/my-image --allow-[1]The correct flag is --allow-unauthenticated to let anyone access the service without login.
Fill both blanks to create a Cloud Run service with 2 CPU cores and 512Mi memory.
gcloud run deploy my-service --image gcr.io/my-project/my-image --cpu [1] --memory [2]
Use --cpu 2 for 2 CPU cores and --memory 512Mi for 512 MiB memory.
Fill all three blanks to set environment variables and concurrency for a Cloud Run service.
gcloud run deploy my-service --image gcr.io/my-project/my-image --set-env-vars [1]=prod,[2]=us-central1 --concurrency [3]
Set environment variables ENVIRONMENT=prod and REGION=us-central1, and concurrency to 80.