From fc642eed315b45dc4fcf32d3795e0e12edbef23c Mon Sep 17 00:00:00 2001 From: langchain-infra Date: Tue, 10 Dec 2024 20:09:15 -0500 Subject: [PATCH] chore: bump 0.8.64 (#199) --- charts/langsmith/Chart.yaml | 4 ++-- charts/langsmith/README.md | 12 ++++++------ .../templates/frontend/config-map.yaml | 18 ++++++++++++++++++ charts/langsmith/values.yaml | 10 +++++----- 4 files changed, 31 insertions(+), 13 deletions(-) diff --git a/charts/langsmith/Chart.yaml b/charts/langsmith/Chart.yaml index f05629b..ca37e52 100644 --- a/charts/langsmith/Chart.yaml +++ b/charts/langsmith/Chart.yaml @@ -5,5 +5,5 @@ maintainers: email: ankush@langchain.dev description: Helm chart to deploy the langsmith application and all services it depends on. type: application -version: 0.8.21 -appVersion: "0.8.63" +version: 0.8.22 +appVersion: "0.8.64" diff --git a/charts/langsmith/README.md b/charts/langsmith/README.md index 9b95688..6a633cf 100644 --- a/charts/langsmith/README.md +++ b/charts/langsmith/README.md @@ -1,6 +1,6 @@ # langsmith -![Version: 0.8.20](https://img.shields.io/badge/Version-0.8.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.53](https://img.shields.io/badge/AppVersion-0.8.53-informational?style=flat-square) +![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) Helm chart to deploy the langsmith application and all services it depends on. @@ -152,23 +152,23 @@ For information on how to use this chart, up-to-date release notes, and other gu | fullnameOverride | string | `""` | String to fully override `"langsmith.fullname"` | | images.aceBackendImage.pullPolicy | string | `"IfNotPresent"` | | | images.aceBackendImage.repository | string | `"docker.io/langchain/langsmith-ace-backend"` | | -| images.aceBackendImage.tag | string | `"0.8.53"` | | +| images.aceBackendImage.tag | string | `"0.8.64"` | | | images.backendImage.pullPolicy | string | `"IfNotPresent"` | | | images.backendImage.repository | string | `"docker.io/langchain/langsmith-backend"` | | -| images.backendImage.tag | string | `"0.8.53"` | | +| images.backendImage.tag | string | `"0.8.64"` | | | images.clickhouseImage.pullPolicy | string | `"Always"` | | | images.clickhouseImage.repository | string | `"docker.io/clickhouse/clickhouse-server"` | | | images.clickhouseImage.tag | string | `"24.5"` | | | images.frontendImage.pullPolicy | string | `"IfNotPresent"` | | | images.frontendImage.repository | string | `"docker.io/langchain/langsmith-frontend"` | | -| images.frontendImage.tag | string | `"0.8.53"` | | +| images.frontendImage.tag | string | `"0.8.64"` | | | images.imagePullSecrets | list | `[]` | Secrets with credentials to pull images from a private registry. Specified as name: value. | | images.platformBackendImage.pullPolicy | string | `"IfNotPresent"` | | | images.platformBackendImage.repository | string | `"docker.io/langchain/langsmith-go-backend"` | | -| images.platformBackendImage.tag | string | `"0.8.53"` | | +| images.platformBackendImage.tag | string | `"0.8.64"` | | | images.playgroundImage.pullPolicy | string | `"IfNotPresent"` | | | images.playgroundImage.repository | string | `"docker.io/langchain/langsmith-playground"` | | -| images.playgroundImage.tag | string | `"0.8.53"` | | +| images.playgroundImage.tag | string | `"0.8.64"` | | | images.postgresImage.pullPolicy | string | `"IfNotPresent"` | | | images.postgresImage.repository | string | `"docker.io/postgres"` | | | images.postgresImage.tag | string | `"14.7"` | | diff --git a/charts/langsmith/templates/frontend/config-map.yaml b/charts/langsmith/templates/frontend/config-map.yaml index 7bfcb45..226f191 100644 --- a/charts/langsmith/templates/frontend/config-map.yaml +++ b/charts/langsmith/templates/frontend/config-map.yaml @@ -76,6 +76,15 @@ data: proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.backend.name }}:{{ .Values.backend.service.port }}; } + location = /{{ .Values.ingress.subdomain }}/api/v1/info { + rewrite /{{ .Values.ingress.subdomain }}/api/v1/info /info break; + proxy_set_header Connection ''; + proxy_http_version 1.1; + proxy_buffering off; + proxy_cache off; + proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.backend.name }}:{{ .Values.backend.service.port }}; + } + # Backend Routes location ~ /{{ .Values.ingress.subdomain }}/api/v1 { rewrite /{{ .Values.ingress.subdomain }}/api/v1/(.*) /api/v1/$1 break; @@ -206,6 +215,15 @@ data: proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }}; } + location = /api/v1/info { + rewrite /api/v1/info /info break; + proxy_set_header Connection ''; + proxy_http_version 1.1; + proxy_buffering off; + proxy_cache off; + proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }}; + } + # Backend Routes location ~ /api/v1 { proxy_set_header Connection ''; diff --git a/charts/langsmith/values.yaml b/charts/langsmith/values.yaml index 853b720..ae6f7c0 100644 --- a/charts/langsmith/values.yaml +++ b/charts/langsmith/values.yaml @@ -17,23 +17,23 @@ images: aceBackendImage: repository: "docker.io/langchain/langsmith-ace-backend" pullPolicy: IfNotPresent - tag: "0.8.63" + tag: "0.8.64" backendImage: repository: "docker.io/langchain/langsmith-backend" pullPolicy: IfNotPresent - tag: "0.8.63" + tag: "0.8.64" frontendImage: repository: "docker.io/langchain/langsmith-frontend" pullPolicy: IfNotPresent - tag: "0.8.63" + tag: "0.8.64" platformBackendImage: repository: "docker.io/langchain/langsmith-go-backend" pullPolicy: IfNotPresent - tag: "0.8.63" + tag: "0.8.64" playgroundImage: repository: "docker.io/langchain/langsmith-playground" pullPolicy: IfNotPresent - tag: "0.8.63" + tag: "0.8.64" postgresImage: repository: "docker.io/postgres" pullPolicy: IfNotPresent