https://dagster.io/ logo
#dagster-kubernetes
Title
# dagster-kubernetes
b

Binoy Shah

08/31/2022, 8:46 PM
This is a followup question to one above. I am doing separate deployments for dagit/daemon and user-deployments. So if I want to add multiple repository into a single user-deployment what is the recommended way to achieve it via
dagsterApiGrpcArgs
? my single docker has code for multiple packages, each with it’s own
@repository
method
Does anybody have a recommendation for this query above ? ☝️☝️
j

johann

09/06/2022, 6:04 PM
Hi Binoy- the current recommendation is either to • point it at a package which imports the other packages (they all need to share the same dependency versions) • or to use multiple user deployments (one per package). This way they can each have a separate python environment
b

Binoy Shah

09/06/2022, 9:36 PM
So Yohann, is the below correct ?
j

johann

09/06/2022, 9:37 PM
that should work
2 Views