🎛️ feat: Custom Environment Variable Support to RAG API Helm Chart (#10245)

* Possibility to add extra env values to the deployment

* Fix: Custom environment variables should be placed after the predefined environment variables
This commit is contained in:
Daniel Paulus 2025-10-28 13:37:04 +01:00 committed by GitHub
parent 7973cb42ef
commit 9e77f835a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -67,6 +67,9 @@ spec:
key: {{ .Values.global.librechat.existingSecretApiKey }} key: {{ .Values.global.librechat.existingSecretApiKey }}
optional: true optional: true
{{- end }} {{- end }}
{{- with .Values.env }}
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with .Values.volumeMounts }} {{- with .Values.volumeMounts }}
volumeMounts: volumeMounts:
{{- toYaml . | nindent 12 }} {{- toYaml . | nindent 12 }}