diff --git a/charts/langfuse/Chart.yaml b/charts/langfuse/Chart.yaml index 657b114..8184204 100644 --- a/charts/langfuse/Chart.yaml +++ b/charts/langfuse/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: langfuse -version: 0.6.0 +version: 0.7.0 description: Open source LLM engineering platform - LLM observability, metrics, evaluations, prompt management. type: application keywords: diff --git a/charts/langfuse/templates/deployment.yaml b/charts/langfuse/templates/deployment.yaml index 3169f64..fe09cdc 100644 --- a/charts/langfuse/templates/deployment.yaml +++ b/charts/langfuse/templates/deployment.yaml @@ -66,7 +66,7 @@ spec: - name: DATABASE_HOST value: {{ .Values.postgresql.deploy | ternary (include "langfuse.postgresql.fullname" . | quote) (.Values.postgresql.host | quote) }} {{- end }} - {{- if .Values.postgresql.database }} + {{- if .Values.postgresql.auth.database }} - name: DATABASE_NAME value: {{ .Values.postgresql.auth.database | quote }} {{- end }} diff --git a/charts/langfuse/values.yaml b/charts/langfuse/values.yaml index 7e2f667..76a86c3 100644 --- a/charts/langfuse/values.yaml +++ b/charts/langfuse/values.yaml @@ -68,6 +68,7 @@ tolerations: [] affinity: {} postgresql: + host: langfuse-postgresql auth: username: postgres password: postgres diff --git a/examples/values-example.yaml b/examples/values-example.yaml index 51072b6..0772415 100644 --- a/examples/values-example.yaml +++ b/examples/values-example.yaml @@ -84,6 +84,7 @@ postgresql: deploy: false auth: username: langfuse + password: langfuse database: postgres_langfuse host: localhost