Complete the code to deploy an app using Cloud Buildpacks with gcloud.
gcloud run deploy my-app --source=[1]The --source flag specifies the directory containing your source code. Here, ./source is the correct folder.
Complete the command to specify the platform for Cloud Run deployment.
gcloud run deploy my-app --source=./source --platform=[1]The --platform=managed option tells Cloud Run to deploy on the fully managed platform.
Fix the error in the buildpack deployment command by completing the missing flag.
gcloud run deploy my-app --source=./source [1] my-regionThe correct flag to specify the deployment region is --region.
Fill both blanks to set the memory and CPU limits for the Cloud Run service.
gcloud run deploy my-app --memory=[1] --cpu=[2] --source=./source
Memory is set to 512Mi and CPU to 1 core for balanced resource allocation.
Fill all three blanks to create a buildpack deployment command with service name, region, and platform.
gcloud run deploy [1] --region=[2] --platform=[3] --source=./source
The service name is my-service, region is us-central1, and platform is managed for a typical Cloud Run deployment.