Add langfuse chart 1.0.0-rc.2

This commit is contained in:
wbsong111
2025-03-04 15:33:42 +09:00
parent b654bd3d6f
commit d24cf817e0
329 changed files with 40505 additions and 0 deletions
@@ -0,0 +1,17 @@
{{- if and (not .Values.postgresql.deploy) (.Values.postgresql.auth.password) -}}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "langfuse.fullname" . }}-postgresql
labels:
{{- include "langfuse.labels" . | nindent 4 }}
type: Opaque
data:
postgres-password: {{ .Values.postgresql.auth.password | toString | b64enc | quote }}
{{- if .Values.postgresql.directUrl }}
postgres-direct-url: {{ .Values.postgresql.directUrl | toString | b64enc | quote }}
{{- end }}
{{- if .Values.postgresql.shadowDatabaseUrl }}
postgres-shadow-database-url: {{ .Values.postgresql.shadowDatabaseUrl | toString | b64enc | quote }}
{{- end }}
{{- end }}