Hi team, I was trying to upgrade our dagster helm ...
# ask-community
t
Hi team, I was trying to upgrade our dagster helm chart from
0.14.3
to
0.14.17
and encountered some issues. It seems that the dagster-run pod yaml is missing
Copy code
envFrom:
    - configMapRef:
        name: my-pipelines-dagster-pipeline-env
since version
0.14.14
and that's preventing me from exporting my own environment variables.
envFrom
is present until version
0.14.13
. Is there a new way to export my environment variables?
🤖 1
d
Hi Thierry - there's an includeConfigInLaunchedRuns field that you can use to automatically include config from your user code deployments in your launched run. You can see an example here (search for 'includeConfigInLaunchedRuns'): https://docs.dagster.io/deployment/guides/kubernetes/deploying-with-helm#configure-your-user-deployment
t
thanks @daniel I will have a look at this