dagster icon indicating copy to clipboard operation
dagster copied to clipboard

Test if Helm chart works with multiple user-code-deployment releases

Open johannkm opened this issue 2 years ago • 1 comments

We only test using one release of the separate user-code-deployment chart. Unclear if things would work when running multiple. Test this out

johannkm avatar May 11 '22 16:05 johannkm

I tried this out today because I was curious about deploying multiple user-code-deployments. On the values.yaml, I set dagster-user-deployments.enableSubchart to false. Also, I set dagit.workspace with the following values:

dagit:
  workspace:
      enabled: true
      servers:
        - host: "k8s-example-user-code-1"
          port: 3030
          name: "user-code-example-1"
        - host: "k8s-example-user-code-2"
          port: 3031
          name: "user-code-example-2"

I deployed two user code deployment charts with hostnames and ports shown above. I used the example user code deployment image docker.io/dagster/user-code-example.

Result: image

So I think it works. I was able to run the single_pod_job for both user code deployments.

justinberedo avatar Aug 02 '22 02:08 justinberedo