Hi, some naive questions about Dagster deployment....
# announcements
a
Hi, some naive questions about Dagster deployment. In our company, we have some standard service templates (written in terraform) which comes with K8s cluster integration and other internal tools integration. If I chose to run Dagster as a service using our service templates (instead of dagster helm charts), is there any way to use
K8RunLauncher
to execute a pipeline run in a separate K8s job?
a
The
K8sRunLauncher
has a lot of assumptions around the things it expects that are published in the helm chart. You may need to write your own custom
RunLauncher
to integrate with your service template set up.
a
Thanks @alex . Is there anything else that I need to consider if I chose not use the Helm chart?
a
you may end up needing a custom
Executor
as well if you want solids run as separate jobs, but
RunLauncher
almost certainly
thankyou 1