You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| redis.auth.existingSecret | string |`""`| If you want to use an existing secret for the redis password, set the name of the secret here. (`redis.auth.password` will be ignored and picked up from this secret). |
210
210
| redis.auth.existingSecretPasswordKey | string |`""`| The key in the existing secret that contains the password. |
211
-
| redis.auth.password | string |`""`|Configure the password by value or existing secret reference. Use URL-encoded passwords or avoid special characters in the password. |
212
-
| redis.auth.username | string |`"default"`| Username to use to connect to the redis database deployed with Langfuse. In case `redis.deploy` is set to `true`, the user will be created automatically. Set to null for an empty username in the connection string. |
211
+
| redis.auth.password | string |`""`|Password for Redis authentication. Set to null to disable authentication (for passwordless Redis like AWS ElastiCache without auth). Use URL-encoded passwords or avoid special characters in the password. |
212
+
| redis.auth.username | string |`"default"`| Username for Redis authentication. Set to null to omit username from connection string entirely. In case `redis.deploy` is set to `true`, the user will be created automatically. |
213
213
| redis.cluster.enabled | bool |`false`| Set to `true` to enable Redis Cluster mode. When enabled, you must set `redis.deploy` to `false` and provide cluster nodes. |
214
214
| redis.cluster.nodes | list |`[]`| List of Redis cluster nodes in the format "host:port". Example: ["redis-1:6379", "redis-2:6379", "redis-3:6379"]|
215
215
| redis.deploy | bool |`true`| Enable valkey deployment (via Bitnami Helm Chart). If you want to use a Redis or Valkey server already deployed, set to false. |
Copy file name to clipboardExpand all lines: charts/langfuse/values.yaml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -475,9 +475,11 @@ redis:
475
475
476
476
# Authentication configuration
477
477
auth:
478
-
# -- Username to use to connect to the redis database deployed with Langfuse. In case `redis.deploy` is set to `true`, the user will be created automatically. Set to null for an empty username in the connection string.
478
+
# -- Username for Redis authentication. Set to null to omit username from connection string entirely.
479
+
# In case `redis.deploy` is set to `true`, the user will be created automatically.
479
480
username: "default"
480
-
# -- Configure the password by value or existing secret reference. Use URL-encoded passwords or avoid special characters in the password.
481
+
# -- Password for Redis authentication. Set to null to disable authentication (for passwordless Redis like AWS ElastiCache without auth).
482
+
# Use URL-encoded passwords or avoid special characters in the password.
481
483
password: ""
482
484
# -- If you want to use an existing secret for the redis password, set the name of the secret here. (`redis.auth.password` will be ignored and picked up from this secret).
0 commit comments