Skip to content

Commit

Permalink
Merge pull request #19 from langchain-ai/infra/fix-queue-env-variables
Browse files Browse the repository at this point in the history
Fix queue environment variables and update chart images
  • Loading branch information
langchain-infra authored Dec 7, 2023
2 parents 8cb5fc8 + e7ffcac commit fedab98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 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.1.5
version: 0.1.6
appVersion: "0.1.0"
3 changes: 3 additions & 0 deletions charts/langsmith/templates/queue/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ spec:
- lc_database.queue.connection.RedisRetry
env:
{{- include "langsmith.commonEnv" . | nindent 12 }}
{{- with .Values.queue.deployment.extraEnv }}
{{- toYaml . | nindent 12 }}
{{- end }}
image: "{{ .Values.images.backendImage.repository }}:{{ .Values.images.backendImage.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.images.backendImage.pullPolicy }}
resources:
Expand Down
8 changes: 4 additions & 4 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ images:
backendImage:
repository: "docker.io/langchain/langchainplus-backend"
pullPolicy: IfNotPresent
tag: "5543bee"
tag: "25cef81"
frontendImage:
repository: "docker.io/langchain/langchainplus-frontend-dynamic"
pullPolicy: IfNotPresent
tag: "5543bee"
tag: "25cef81"
hubBackendImage:
repository: "docker.io/langchain/langchainhub-backend"
pullPolicy: IfNotPresent
tag: "5543bee"
tag: "25cef81"
playgroundImage:
repository: "docker.io/langchain/langchainplus-playground"
pullPolicy: IfNotPresent
tag: "5543bee"
tag: "25cef81"
postgresImage:
repository: "docker.io/postgres"
pullPolicy: IfNotPresent
Expand Down

0 comments on commit fedab98

Please sign in to comment.