mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 18:30:15 +01:00
* Replaced Helm Charts with Blue Atlas Charts * Fix Workflow * improve docs * update gitignore * Update docs * change values order, add hpa * change tls example domain * Default: Enable liveness and readiness * chore: bump base chart * apply requested changes * add Release fix * add: error handling * chore: cleanup and testing * fix: adjust Chart.yaml --------- Co-authored-by: hofq <gregorspalme@protonmail.com> Co-authored-by: Ruben Talstra <RubenTalstra1211@outlook.com>
17 lines
No EOL
952 B
YAML
Executable file
17 lines
No EOL
952 B
YAML
Executable file
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: {{ include "librechat.fullname" $ }}-configenv
|
|
data:
|
|
{{- if (index .Values "librechat-rag-api" "enabled") }}
|
|
RAG_API_URL: http://{{ include "rag.fullname" (index .Subcharts "librechat-rag-api") | lower }}.{{ .Release.Namespace | lower }}.svc.cluster.local:8000
|
|
{{- end }}
|
|
{{- if and (not (dig "configEnv" "MEILI_HOST" "" .Values.librechat)) .Values.meilisearch.enabled }}
|
|
MEILI_HOST: http://{{ include "meilisearch.fullname" .Subcharts.meilisearch }}.{{ .Release.Namespace | lower }}.svc.cluster.local:7700
|
|
{{- end }}
|
|
{{- if and (not (dig "configEnv" "MONGO_URI" "" .Values.librechat)) .Values.mongodb.enabled }}
|
|
MONGO_URI: mongodb://{{ include "mongodb.service.nameOverride" .Subcharts.mongodb }}.{{ .Release.Namespace | lower }}.svc.cluster.local:27017/LibreChat
|
|
{{- end }}
|
|
{{- if .Values.librechat.configEnv }}
|
|
{{- toYaml .Values.librechat.configEnv | nindent 2 }}
|
|
{{- end }} |