diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 78af6d3..3f02ff7 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -35,6 +35,9 @@ spec: value: {{ .Values.logFormat }} - name: NO_HISTOGRAM value: {{ .Values.noHistogram | quote}} +{{- if .Values.extraEnv }} +{{ toYaml .Values.extraEnv | indent 8 }} +{{- end }} {{- if .Values.security.enabled }} - name: DRUID_USER value: {{ .Values.security.druidUser }} diff --git a/helm/values.yaml b/helm/values.yaml index 966c2b0..4a393f5 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -15,6 +15,8 @@ noHistogram: false exporterPort: 8080 +extraEnv: {} + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little