mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00
⛑️ fix: follow postgres bitnami values schema in rag-api helm chart (#7782)
This commit is contained in:
parent
751522087a
commit
136cf1d5a8
2 changed files with 6 additions and 2 deletions
|
@ -57,7 +57,7 @@ spec:
|
|||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.postgresql.auth.existingSecret }}
|
||||
key: {{ .Values.postgresql.auth.existingSecretKey }}
|
||||
key: {{ .Values.postgresql.auth.secretKeys.userPasswordKey }}
|
||||
{{- end }}
|
||||
{{- if .Values.global.librechat.existingSecretName }}
|
||||
- name: OPENAI_API_KEY
|
||||
|
|
|
@ -14,6 +14,7 @@ image:
|
|||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: latest
|
||||
|
||||
# See https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml for more details.
|
||||
postgresql:
|
||||
enabled: true
|
||||
# nameOverride: vectordb
|
||||
|
@ -27,7 +28,10 @@ postgresql:
|
|||
# define a secret with values for "postgres-password", "password" (user Password) and "replication-password" or add values directly
|
||||
existingSecret: librechat-vectordb
|
||||
# postgres-password is needed to enable pgvector extension. If you enable it manually you can use "password" and user "librechat"
|
||||
existingSecretKey: postgres-password
|
||||
secretKeys:
|
||||
userPasswordKey: postgres-password
|
||||
adminPasswordKey: postgres-password
|
||||
replicationPasswordKey: postgres-password
|
||||
|
||||
imagePullSecrets: []
|
||||
nameOverride: ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue