is there a way to associate arbitrary data to orio...
# prefect-community
d
is there a way to associate arbitrary data to orion objects? i.e. git repo, sha, contact team, etc may all be useful from a discoverability perspective on all flows/deployments
1
n
Hi @Darin Douglass - yes, tags! for example, you can attach a tag to a deployment as shown here using the
-t
flag in the CLI for
prefect deployment build
or the
tag
kwarg using the pythonic deployment interface or you can create flow runs from a deployment with a set of tags and then use the tag filter to retrieve them with the client
here is an example from our recipes repo where we use tags to track flow runs created from a deployment with the client
d
oh nice. i didn’t even think of tags as an option b/c prefect v1 tags are so tightly coupled with how agents pick up work