mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 12:20:14 +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>
16 lines
No EOL
497 B
YAML
Executable file
16 lines
No EOL
497 B
YAML
Executable file
{{- if .Values.librechat.imageVolume.enabled }}
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: {{ include "librechat.fullname" $ }}-images
|
|
spec:
|
|
accessModes:
|
|
- {{ .Values.librechat.imageVolume.accessModes }}
|
|
{{- if .Values.librechat.imageVolume.storageClassName }}
|
|
storageClassName: {{ .Values.librechat.imageVolume.storageClassName }}
|
|
{{- end }}
|
|
volumeMode: Filesystem
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.librechat.imageVolume.size }}
|
|
{{- end }} |