Skip to content

Commit fedab98

Browse files
Merge pull request #19 from langchain-ai/infra/fix-queue-env-variables
Fix queue environment variables and update chart images
2 parents 8cb5fc8 + e7ffcac commit fedab98

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

charts/langsmith/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ maintainers:
55
66
description: Helm chart to deploy the langsmith application and all services it depends on.
77
type: application
8-
version: 0.1.5
8+
version: 0.1.6
99
appVersion: "0.1.0"

charts/langsmith/templates/queue/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ spec:
5555
- lc_database.queue.connection.RedisRetry
5656
env:
5757
{{- include "langsmith.commonEnv" . | nindent 12 }}
58+
{{- with .Values.queue.deployment.extraEnv }}
59+
{{- toYaml . | nindent 12 }}
60+
{{- end }}
5861
image: "{{ .Values.images.backendImage.repository }}:{{ .Values.images.backendImage.tag | default .Chart.AppVersion }}"
5962
imagePullPolicy: {{ .Values.images.backendImage.pullPolicy }}
6063
resources:

charts/langsmith/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ images:
1515
backendImage:
1616
repository: "docker.io/langchain/langchainplus-backend"
1717
pullPolicy: IfNotPresent
18-
tag: "5543bee"
18+
tag: "25cef81"
1919
frontendImage:
2020
repository: "docker.io/langchain/langchainplus-frontend-dynamic"
2121
pullPolicy: IfNotPresent
22-
tag: "5543bee"
22+
tag: "25cef81"
2323
hubBackendImage:
2424
repository: "docker.io/langchain/langchainhub-backend"
2525
pullPolicy: IfNotPresent
26-
tag: "5543bee"
26+
tag: "25cef81"
2727
playgroundImage:
2828
repository: "docker.io/langchain/langchainplus-playground"
2929
pullPolicy: IfNotPresent
30-
tag: "5543bee"
30+
tag: "25cef81"
3131
postgresImage:
3232
repository: "docker.io/postgres"
3333
pullPolicy: IfNotPresent

0 commit comments

Comments
 (0)