From 9e77f835a61caba2816a242a03af59736108c122 Mon Sep 17 00:00:00 2001 From: Daniel Paulus Date: Tue, 28 Oct 2025 13:37:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=9B=EF=B8=8F=20feat:=20Custom=20Enviro?= =?UTF-8?q?nment=20Variable=20Support=20to=20RAG=20API=20Helm=20Chart=20(#?= =?UTF-8?q?10245)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Possibility to add extra env values to the deployment * Fix: Custom environment variables should be placed after the predefined environment variables --- helm/librechat-rag-api/templates/rag-deployment.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helm/librechat-rag-api/templates/rag-deployment.yaml b/helm/librechat-rag-api/templates/rag-deployment.yaml index 7f31df251b..5324ee3f7e 100755 --- a/helm/librechat-rag-api/templates/rag-deployment.yaml +++ b/helm/librechat-rag-api/templates/rag-deployment.yaml @@ -67,6 +67,9 @@ spec: key: {{ .Values.global.librechat.existingSecretApiKey }} optional: true {{- end }} + {{- with .Values.env }} + {{- toYaml . | nindent 10 }} + {{- end }} {{- with .Values.volumeMounts }} volumeMounts: {{- toYaml . | nindent 12 }}