Hey hey folks :slightly_smiling_face: Deploying on...
# all-things-deployment
r
Hey hey folks šŸ™‚ Deploying on Azure, trying to set some specific values for datahub helm chart, i'm having this "new" error to me :
coalesce.go220 warning: cannot overwrite table with non table for datahub.datahub-frontend.env (map[JMXPORT:1099])
coalesce.go220 warning: cannot overwrite table with non table for datahub.datahub-gms.env (map[JMXPORT:1099])
b
what helm version are you using
r
Hi @bumpy-needle-3184!
version.BuildInfo{Version:"v3.8.1", GitCommit:"5cb9af4b1b271d11d7a97a71df3ac337dd94ad37", GitTreeState:"clean", GoVersion:"go1.17.5"}
i'm trying to set some env var in a values.yaml
i don't know really how to declare it : env: • name : aaa • value : dded
b
could you share where and how did you update it
r
for datahub :
helm install datahub datahub/datahub --values values-demo.yaml --version 0.2.83
and values file that is failing
b
could you share the block in values.yaml where you made modification
r
datahub-gms:
enabled: true
image:
repository: dtnls/duke-gms
tag: "1.0.1"
env:
- name: MY_NAME
value: "myvalue"
tring to put something like that
i have a custome gms image + this image need some "env vars"
like this i had the above error
bad key env: i guess
this is how it will look
Copy code
datahub-gms:
    enabled: true
    image:
      tag: "xxx"
    extraEnvs:
      - name: CLI_TELEMETRY_ENABLED
        value: "false"
      - name: INGESTION_REPORTING_ENABLED
        value: "true"
      - name: ENABLE_THIRD_PARTY_LOGGING
        value: "true"
r
yeah cool thanks a lot
let me try
Saved my day @bumpy-needle-3184 thx again. + I deactivated the neo4j + deploying well on Azure šŸ‘
b
you're welcome