https://dagster.io/ logo
#deployment-kubernetes
Title
# deployment-kubernetes
r

Robert Lancer

06/16/2020, 8:33 PM
Related to the Helm chart any plan for hosted images? Currently I'm building images and pushing them to a private repo.
n

nate

06/16/2020, 8:36 PM
by hosted images, do you mean for the celery workers?
r

Robert Lancer

06/16/2020, 8:40 PM
Dagster / Dagit too
Even just default images without any user code, so a user can do helm install and then visit a URL and see the UI would be nice
n

nate

06/16/2020, 8:43 PM
Got it—with the current Helm chart and celery-k8s executor you’ll need two images: 1. An image w/ user code which you’ll rebuild and push to a private repo and use this for Dagit and for pipeline run execution. 2. An image for the Celery workers; this needs Dagster libraries but no user code In the near future, (1) will be relaxed so that the hosted Dagit does not need user code, and only the pipeline run image needs it. We just haven’t updated the Helm/K8s integration to take advantage of the new user code separation that we’ve built in 0.8.0 yet
r

Robert Lancer

06/16/2020, 8:44 PM
Perfect, going to wait on that before I do any more k8s work
n

nate

06/16/2020, 8:44 PM
Yeah, that’s definitely doable—we’ve avoided publishing images to date to avoid the surface area, but perhaps something like
dagster-demo:latest
might be good
👍