Skip to content

Commit a93fac9

Browse files
authored
Merge branch 'main' into steffen/patch-cluster-mode-external-ch
2 parents 0aeffde + 5359635 commit a93fac9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

charts/langfuse/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: langfuse
3-
version: 1.5.4
3+
version: 1.5.6
44
description: Open source LLM engineering platform - LLM observability, metrics, evaluations, prompt management.
55
type: application
66
keywords:
@@ -40,4 +40,4 @@ maintainers:
4040
email: contact@langfuse.com
4141
url: https://langfuse.com/
4242
icon: https://langfuse.com/langfuse_logo.png
43-
appVersion: "3.112.0"
43+
appVersion: "3.117.2"

charts/langfuse/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# langfuse
22

3-
![Version: 1.5.4](https://img.shields.io/badge/Version-1.5.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.112.0](https://img.shields.io/badge/AppVersion-3.112.0-informational?style=flat-square)
3+
![Version: 1.5.6](https://img.shields.io/badge/Version-1.5.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.117.2](https://img.shields.io/badge/AppVersion-3.117.2-informational?style=flat-square)
44

55
Open source LLM engineering platform - LLM observability, metrics, evaluations, prompt management.
66

@@ -31,7 +31,7 @@ Open source LLM engineering platform - LLM observability, metrics, evaluations,
3131

3232
| Key | Type | Default | Description |
3333
|-----|------|---------|-------------|
34-
| clickhouse.auth.existingSecret | string | `""` | If you want to use an existing secret for the ClickHouse password, set the name of the secret here. (`clickhouse.auth.username` and `clickhouse.auth.password` will be ignored and picked up from this secret). |
34+
| clickhouse.auth.existingSecret | string | `""` | If you want to use an existing secret for the ClickHouse password, set the name of the secret here. (`clickhouse.auth.password` will be ignored and picked up from this secret). |
3535
| clickhouse.auth.existingSecretKey | string | `""` | The key in the existing secret that contains the password. |
3636
| clickhouse.auth.password | string | `""` | Password for the ClickHouse user. |
3737
| clickhouse.auth.username | string | `"default"` | Username for the ClickHouse user. |
@@ -190,7 +190,7 @@ Open source LLM engineering platform - LLM observability, metrics, evaluations,
190190
| postgresql.args | string | `""` | Additional database connection arguments |
191191
| postgresql.auth.args | string | `""` | Additional database connection arguments |
192192
| postgresql.auth.database | string | `"postgres_langfuse"` | Database name to use for Langfuse. |
193-
| postgresql.auth.existingSecret | string | `""` | If you want to use an existing secret for the postgres password, set the name of the secret here. (`postgresql.auth.username` and `postgresql.auth.password` will be ignored and picked up from this secret). |
193+
| postgresql.auth.existingSecret | string | `""` | If you want to use an existing secret for the postgres password, set the name of the secret here. (`postgresql.auth.password` will be ignored and picked up from this secret). |
194194
| postgresql.auth.password | string | `""` | Password to use to connect to the postgres database deployed with Langfuse. In case `postgresql.deploy` is set to `true`, the password will be set automatically. |
195195
| postgresql.auth.secretKeys | object | `{"userPasswordKey":"password"}` | The key in the existing secret that contains the password. |
196196
| postgresql.auth.username | string | `"postgres"` | Username to use to connect to the postgres database deployed with Langfuse. In case `postgresql.deploy` is set to `true`, the user will be created automatically. |
@@ -218,7 +218,7 @@ Open source LLM engineering platform - LLM observability, metrics, evaluations,
218218
| redis.tls.enabled | bool | `false` | Set to `true` to enable TLS/SSL encrypted connection to the Redis server |
219219
| redis.tls.keyPath | string | `""` | Path to the client private key file for mutual TLS authentication |
220220
| s3.accessKeyId | object | `{"secretKeyRef":{"key":"","name":""},"value":""}` | S3 accessKeyId to use for all uploads. Can be overridden per upload type. |
221-
| s3.auth.existingSecret | string | `""` | If you want to use an existing secret for the root user password, set the name of the secret here. (`s3.auth.rootUser` and `s3.auth.rootPassword` will be ignored and picked up from this secret). |
221+
| s3.auth.existingSecret | string | `""` | If you want to use an existing secret for the root user password, set the name of the secret here. (`s3.auth.rootPassword` will be ignored and picked up from this secret). |
222222
| s3.auth.rootPassword | string | `""` | Password for MinIO root user |
223223
| s3.auth.rootPasswordSecretKey | string | `""` | Key where the Minio root user password is being stored inside the existing secret `s3.auth.existingSecret` |
224224
| s3.auth.rootUser | string | `"minio"` | root username |

charts/langfuse/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ Return ClickHouse protocol (http or https)
362362
{{- if .Values.clickhouse.migration.url }}
363363
value: {{ .Values.clickhouse.migration.url | quote }}
364364
{{- else if .Values.clickhouse.host }}
365-
value: "clickhouse://{{ .Values.clickhouse.host }}:{{ .Values.clickhouse.nativePort }}"
365+
value: "clickhouse://{{ include "langfuse.clickhouse.hostname" . }}:{{ .Values.clickhouse.nativePort }}"
366366
{{- else if .Values.clickhouse.deploy }}
367367
value: "clickhouse://{{ include "langfuse.clickhouse.hostname" . }}:{{ .Values.clickhouse.nativePort }}"
368368
{{- end }}

charts/langfuse/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ postgresql:
423423
username: postgres
424424
# -- Password to use to connect to the postgres database deployed with Langfuse. In case `postgresql.deploy` is set to `true`, the password will be set automatically.
425425
password: ""
426-
# -- If you want to use an existing secret for the postgres password, set the name of the secret here. (`postgresql.auth.username` and `postgresql.auth.password` will be ignored and picked up from this secret).
426+
# -- If you want to use an existing secret for the postgres password, set the name of the secret here. (`postgresql.auth.password` will be ignored and picked up from this secret).
427427
existingSecret: ""
428428
# -- The key in the existing secret that contains the password.
429429
secretKeys:
@@ -520,7 +520,7 @@ clickhouse:
520520
username: default
521521
# -- Password for the ClickHouse user.
522522
password: ""
523-
# -- If you want to use an existing secret for the ClickHouse password, set the name of the secret here. (`clickhouse.auth.username` and `clickhouse.auth.password` will be ignored and picked up from this secret).
523+
# -- If you want to use an existing secret for the ClickHouse password, set the name of the secret here. (`clickhouse.auth.password` will be ignored and picked up from this secret).
524524
existingSecret: ""
525525
# -- The key in the existing secret that contains the password.
526526
existingSecretKey: ""
@@ -690,7 +690,7 @@ s3:
690690
rootUser: minio
691691
# -- Password for MinIO root user
692692
rootPassword: ""
693-
# -- If you want to use an existing secret for the root user password, set the name of the secret here. (`s3.auth.rootUser` and `s3.auth.rootPassword` will be ignored and picked up from this secret).
693+
# -- If you want to use an existing secret for the root user password, set the name of the secret here. (`s3.auth.rootPassword` will be ignored and picked up from this secret).
694694
existingSecret: ""
695695
# -- Key where the Minio root user is being stored inside the existing secret `s3.auth.existingSecret`
696696
rootUserSecretKey: ""

0 commit comments

Comments
 (0)