Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/langsmith/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ maintainers:
description: Helm chart to deploy the langsmith application and all services it depends on.
type: application
version: 0.13.32
appVersion: "0.13.35"
appVersion: "0.13.36"
3 changes: 2 additions & 1 deletion charts/langsmith/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# langsmith

![Version: 0.13.32](https://img.shields.io/badge/Version-0.13.32-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.13.35](https://img.shields.io/badge/AppVersion-0.13.35-informational?style=flat-square)
![Version: 0.13.32](https://img.shields.io/badge/Version-0.13.32-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.13.36](https://img.shields.io/badge/AppVersion-0.13.36-informational?style=flat-square)

Helm chart to deploy the langsmith application and all services it depends on.

Expand Down Expand Up @@ -1445,6 +1445,7 @@ For information on how to use this chart, up-to-date release notes, and other gu
| redis.external.cluster.password | string | `""` | |
| redis.external.cluster.passwordSecretKey | string | `"redis_cluster_password"` | |
| redis.external.cluster.tlsEnabled | bool | `true` | |
| redis.external.clusterSafeMode | bool | `false` | |
| redis.external.connectionUrl | string | `""` | |
| redis.external.connectionUrlSecretKey | string | `"connection_url"` | |
| redis.external.enabled | bool | `false` | |
Expand Down
2 changes: 2 additions & 0 deletions charts/langsmith/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ Template containing common environment variables that are used by several servic
name: {{ include "langsmith.redisSecretsName" . }}
key: {{ .Values.redis.external.connectionUrlSecretKey }}
optional: {{ .Values.config.disableSecretCreation }}
- name: REDIS_CLUSTER_SAFE_MODE
value: {{ .Values.redis.external.clusterSafeMode | quote }}
{{- end }}
{{- if .Values.redis.external.clientCert.secretName }}
- name: REDIS_TLS_CLIENT_CERT_PATH
Expand Down
2 changes: 2 additions & 0 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2002,6 +2002,8 @@ redis:
secretName: ""
certSecretKey: "tls.crt"
keySecretKey: "tls.key"
# This flag disables cluster-unsafe operations. Needed for Azure EnterpriseCluster, which connects with the standalone client, but requires cluster-safe operations
clusterSafeMode: false
# Redis cluster configuration.
cluster:
enabled: false
Expand Down
Loading