Scott Hood
05/05/2022, 2:41 PMdaniel
05/05/2022, 2:48 PMScott Hood
05/05/2022, 2:51 PMdaniel
05/05/2022, 2:54 PMenv:
field that i linked also makes a config map for you (it's just scoped to the individual deployment rather than shared across all of them).Scott Hood
05/05/2022, 2:56 PM<chatname>-<deploymetn-name>-user-env
Problem with this is we will have multiple deployments and have a set of common environment variables that we want applied to each so either we have to create a config map once, apply it to every deployment, or like you have here, apply the environment variables to each deployment.daniel
05/05/2022, 3:00 PMDagster Bot
05/05/2022, 3:01 PMScott Hood
05/05/2022, 3:01 PMdagsterUserDeployments.sharedEnv
for setting the global confits.daniel
05/05/2022, 3:02 PMdagsterUserDeployments.sharedEnv
is an internal function for our helm chart - it's not something that we expose directly in the values.yaml unfortunatelyScott Hood
05/05/2022, 3:52 PMAzureKeyVaultSecret
to the env list via:
env:
- name: AUTH_TOKEN
valueFrom:
secretKeyRef:
name: <secret_name>
key: <dataKey>
However was apparently running into errors. Our AKS group is saying to simply set the envSecrets
however not sure based on that how its supposed to route the dataKey to the correct Environment variable name.daniel
05/05/2022, 6:32 PMScott Hood
05/05/2022, 6:33 PMdaniel
05/05/2022, 6:34 PMScott Hood
05/05/2022, 6:36 PMdaniel
05/05/2022, 6:37 PM