What is the best way to emulate the kubernetes hel...
# deployment-kubernetes
s
What is the best way to emulate the kubernetes helm chart configuration outside of kubernetes? For instance, have a daemon, dagit and code location, but also spin up jobs as their own process?
d
You can configure it to use the DefaultRunLauncher by setting that as a 'custom' run launcher here: https://github.com/dagster-io/dagster/blob/master/helm/dagster/values.yaml#L731-L737
Copy code
customRunLauncher:
  module: dagster
  class: DefaultRunLauncher
  config: {}
that will then launch runs on your code servers like when running dagster locally
🙏 1