mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-02 08:38:51 +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>
12 lines
No EOL
419 B
YAML
Executable file
12 lines
No EOL
419 B
YAML
Executable file
{{ if not .Values.postgresql.auth.existingSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: librechat-vectordb
|
|
type: Opaque
|
|
data:
|
|
# generate 32 chars long random string, base64 encode it and then double-quote the result string.
|
|
postgres-password: {{ randAlphaNum 32 | b64enc | quote }}
|
|
password: {{ randAlphaNum 32 | b64enc | quote }}
|
|
replication-password: {{ randAlphaNum 32 | b64enc | quote }}
|
|
{{ end }} |