Skip to content

Commit

Permalink
fix: typo in postgres db name condition
Browse files Browse the repository at this point in the history
Fixes: #30
  • Loading branch information
Steffen911 committed Nov 12, 2024
1 parent 7d23f73 commit 2c7800c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/langfuse/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/langfuse/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions charts/langfuse/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ tolerations: []
affinity: {}

postgresql:
host: langfuse-postgresql
auth:
username: postgres
password: postgres
Expand Down
1 change: 1 addition & 0 deletions examples/values-example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ postgresql:
deploy: false
auth:
username: langfuse
password: langfuse
database: postgres_langfuse
host: localhost

Expand Down

0 comments on commit 2c7800c

Please sign in to comment.