Replies: 1 comment 10 replies
-
There are three problems to solve:
The
|
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The problem
We'd like to create a deployment with multiple independent dag groups. The specific group of dags is actually connected to the specific env. To save few bucks on GCP it would be convenient to have a one central composer for managing various tasks in different projects. In our case, one composer for each env: dev/test/prod. The current solution doesn't allow such a setup because there is no way to deploy group of dags. The only option to replace dags with newer version is to pass the
--clear-dags-folder
arg to thebf deploy-dags
command. It clears all currently deployed dags and uploads the new ones.Possible solution
To enable deployment only for specific group of dags e.g. dev/test/prod dags we would like to introduce the concept of dags grouping.
dev/test/prod
--group-id dev
during deployment:bf deploy-dags --group-id dev
bf deploy-dags --group-id {some-project-id}:{dev}
Beta Was this translation helpful? Give feedback.
All reactions