Complete the code to deploy a Cloud Run job named 'batch-job'.
gcloud run jobs create batch-job --image=[1] --region=us-central1The --image flag specifies the container image to use for the Cloud Run job.
Complete the command to run the Cloud Run job 'batch-job' once.
gcloud run jobs execute batch-job --region=[1]The --region flag specifies the region where the job is deployed.
Fix the error in the command to list Cloud Run jobs in the 'us-central1' region.
gcloud run jobs list --region=[1]The --region flag must specify the region to list jobs from.
Fill both blanks to update the Cloud Run job 'batch-job' with a new image and set max retries to 3.
gcloud run jobs update batch-job --image=[1] --max-retries=[2] --region=us-central1
The --image flag updates the container image, and --max-retries sets how many times the job retries on failure.
Fill all three blanks to create a Cloud Run job 'batch-job' with 2 tasks, each with 1 CPU and 512Mi memory.
gcloud run jobs create batch-job --tasks=[1] --cpu=[2] --memory=[3] --region=us-central1 --image=gcr.io/my-project/my-image:latest
--tasks sets how many times the job runs in parallel, --cpu and --memory set resource limits per task.