dagster
dagster copied to clipboard
Test if Helm chart works with multiple user-code-deployment releases
We only test using one release of the separate user-code-deployment chart. Unclear if things would work when running multiple. Test this out
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:
So I think it works. I was able to run the single_pod_job
for both user code deployments.