Hi, question about deployments: Currently I build ...
# ask-community
t
Hi, question about deployments: Currently I build and apply deployments using the CLI. However, there are some things I can't set with CLI (like description), and also, specifying all arguments on a command line (in a bash script) is way less readable than yaml. I would love to use yaml, but the problem with it is that all changes I make to it (like a custom description I add) will get overwritten every time I re-generate the build file. Is there a way to make Prefect take into account existing build file?
e
Could use the deployment class and pull the parameters from a yaml file
t
Good idea, thanks!