mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
9 lines
353 B
YAML
9 lines
353 B
YAML
|
|
apiVersion: v1
|
||
|
|
kind: ConfigMap
|
||
|
|
metadata:
|
||
|
|
name: {{ include "rag.fullname" $ | lower}}-config
|
||
|
|
data:
|
||
|
|
POSTGRES_DB: {{ .Values.postgresql.auth.database }}
|
||
|
|
POSTGRES_USER: {{ .Values.postgresql.auth.username }}
|
||
|
|
DB_HOST: {{ .Release.Name }}-postgresql.{{ .Release.Namespace | lower }}.svc.cluster.local
|
||
|
|
{{- toYaml .Values.rag.configEnv | nindent 2 }}
|