Skip to content

Commit

Permalink
fix: use correct redis port (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra authored Dec 11, 2024
1 parent fc642ee commit 1c55962
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/langsmith/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ maintainers:
email: [email protected]
description: Helm chart to deploy the langsmith application and all services it depends on.
type: application
version: 0.8.22
version: 0.8.23
appVersion: "0.8.64"
2 changes: 1 addition & 1 deletion charts/langsmith/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# langsmith

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

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

Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/templates/redis/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ data:
{{- if .Values.redis.external.enabled }}
connection_url: {{ .Values.redis.external.connectionUrl | b64enc }}
{{- else }}
connection_url: {{ printf "redis://%s-%s:%v" (include "langsmith.fullname" .) .Values.redis.name .Values.redis.containerPort | b64enc }}
connection_url: {{ printf "redis://%s-%s:%v" (include "langsmith.fullname" .) .Values.redis.name .Values.redis.service.port | b64enc }}
{{- end}}
{{- end }}

0 comments on commit 1c55962

Please sign in to comment.