Bruno Nirello
07/24/2024, 1:53 PMMarvin
07/24/2024, 1:53 PMprefect.yaml
file, you can use the tags
key within the deployment configuration. Here's an example setup for `prefect.yaml`:
yaml
# Generic metadata about this project
name: <PROJECT_NAME>
prefect-version: 2.x
# Deployments section
deployments:
- name: <DEPLOYMENT_NAME>
flow_name: <FLOW_NAME>
tags:
- <TAG1>
- <TAG2>
work_pool:
name: <WORK_POOL_NAME>
# Other deployment configurations
Replace <PROJECT_NAME>
, <DEPLOYMENT_NAME>
, <FLOW_NAME>
, <TAG1>
, <TAG2>
, and <WORK_POOL_NAME>
with your specific details.
For more information, you can refer to the Prefect documentation.