| # Welcome to your prefect.yaml file! You can use this file for storing and managing | |
| # configuration for deploying your flows. We recommend committing this file to source | |
| # control along with your flow code. | |
| # Generic metadata about this project | |
| name: OT-2-LCM | |
| prefect-version: 3.3.4 | |
| # build section allows you to manage and build docker images | |
| build: | |
| # push section allows you to manage if and how this project is uploaded to remote locations | |
| push: | |
| # pull section allows you to provide instructions for cloning this project in remote locations | |
| pull: | |
| - prefect.deployments.steps.set_working_directory: | |
| directory: /home/user/app | |
| # the deployments section allows you to provide configuration for deploying flows | |
| deployments: | |
| - name: wells-maintenance | |
| version: | |
| tags: [] | |
| concurrency_limit: | |
| description: | |
| entrypoint: maintenance_flow.py:request_wells_maintenance | |
| parameters: {} | |
| work_pool: | |
| name: ot2-pool | |
| work_queue_name: | |
| job_variables: {} | |
| enforce_parameter_schema: true | |
| schedules: [] | |