Skip to content

feat: add support for extraEnv value in chart

When deploying a helm chart, it is often useful to declare environment variables within a Deployment's manifest instead of creating a ConfigMap or Secret resource. For example, tunable parameters for applications:

# values.yaml
extraEnv:
  - name: NUM_THREADS
    value: 3
  - name: AWS_REGION
    value: us-west-2
Edited by Alex Conrey

Merge request reports