Hello, I am using User Code Deployments (gRPC) (<...
# announcements
k
Hello, I am using User Code Deployments (gRPC) (https://dev.to/michielhub/dagster-with-user-code-deployments-grpc-2c16) Do I understand correctly that if I want to add new repository and/or new pipelines to repository then each time I have to reinstall Dagster (helm uninstall dagster ..... & helm install dagster...) ? Or they should refresh automatically? Because UI does not show new repos/pipelines after I have added new images to docker registry, but it shows them after I have reinstalled dagster. Thanks in advance
c
if you want to add a new repository, you can add that to the values.yaml file and run helm upgrade instead: https://helm.sh/docs/helm/helm_upgrade/
👍 1
if you add a new pipeline to the repository, you can re-deploy only that one user deployment (either by updating the image tag or, if you use the
latest
tag, there are a few workarounds here: https://github.com/kubernetes/kubernetes/issues/33664)
we are also updating our grpc layer to fetch new pipelines that are added to a repository, so we’ll have native support for adding new pipelines soon
k
Thanks very much! I will check.
👍 1