mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-27 13:48:51 +01:00
26 lines
577 B
YAML
Executable file
26 lines
577 B
YAML
Executable file
{{- range $key, $value := .Values.additionalConfigMaps }}
|
|
{{- if or .data .binaryData }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "librechat.fullname" $ }}-{{ default "custom" $key }}
|
|
{{- with .labels }}
|
|
labels:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .data }}
|
|
data:
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- with .binaryData }}
|
|
binaryData:
|
|
{{- toYaml . | nindent 2 }}
|
|
immutable: {{ default false .immutable }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|