Slackbot
09/29/2024, 11:11 PMMarvin
09/29/2024, 11:12 PMI am trying to deploy a deployment in a Cloud Run Pool.Here is my deployment file: ```name: rori-math-etl prefect-version: 3.0.0 # build section allows you to manage and build docker image build: - prefect_docker.deployments.steps.build_docker_image: id: build_image requires: prefect-docker>=0.3.1 image_name: us-docker.pkg.dev/rori-turn/prefect-artifacts/calculate-student-metrics tag: latest dockerfile: Dockerfile platform: linux/amd64 # push section allows you to manage if and how this project is uploaded to remote locations push: - prefect_docker.deployments.steps.push_docker_image: requires: prefect-docker>=0.3.1 image_name: '{{ build_image.image_name }}' tag: '{{ build_image.tag }}' # pull section allows you to provide instructions for cloning this project in remote locations pull: - prefect.deployments.steps.set_working_directory: directory: /opt/prefect/rori-math-etl deployments: - name: student-metrics-test-deploy entrypoint: "rori_math_etl/tasks/calculate_student_metrics.py:calculate_student_metrics" work_pool: name: rori-math-etl-cloud-run-pool job_variables: image