Skip to content

Commit

Permalink
chore: bump 0.8.84 (#203)
Browse files Browse the repository at this point in the history
* chore: bump 0.8.84

* docs
  • Loading branch information
langchain-infra authored Jan 10, 2025
1 parent 8501acb commit 765c40c
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 28 deletions.
4 changes: 2 additions & 2 deletions 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.25
appVersion: "0.8.73"
version: 0.8.26
appVersion: "0.8.84"
14 changes: 7 additions & 7 deletions charts/langsmith/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# langsmith

![Version: 0.8.25](https://img.shields.io/badge/Version-0.8.25-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.73](https://img.shields.io/badge/AppVersion-0.8.73-informational?style=flat-square)
![Version: 0.8.26](https://img.shields.io/badge/Version-0.8.26-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.84](https://img.shields.io/badge/AppVersion-0.8.84-informational?style=flat-square)

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

Expand Down Expand Up @@ -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.73"` | |
| images.aceBackendImage.tag | string | `"0.8.84"` | |
| images.backendImage.pullPolicy | string | `"IfNotPresent"` | |
| images.backendImage.repository | string | `"docker.io/langchain/langsmith-backend"` | |
| images.backendImage.tag | string | `"0.8.73"` | |
| images.backendImage.tag | string | `"0.8.84"` | |
| 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.73"` | |
| images.frontendImage.tag | string | `"0.8.84"` | |
| 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.73"` | |
| images.platformBackendImage.tag | string | `"0.8.84"` | |
| images.playgroundImage.pullPolicy | string | `"IfNotPresent"` | |
| images.playgroundImage.repository | string | `"docker.io/langchain/langsmith-playground"` | |
| images.playgroundImage.tag | string | `"0.8.73"` | |
| images.playgroundImage.tag | string | `"0.8.84"` | |
| images.postgresImage.pullPolicy | string | `"IfNotPresent"` | |
| images.postgresImage.repository | string | `"docker.io/postgres"` | |
| images.postgresImage.tag | string | `"14.7"` | |
Expand Down Expand Up @@ -795,6 +795,6 @@ For information on how to use this chart, up-to-date release notes, and other gu
| Ankush | <[email protected]> | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)
## Docs Generated by [helm-docs](https://github.com/norwoodj/helm-docs)
`helm-docs -t ./charts/langsmith/README.md.gotmpl`
46 changes: 32 additions & 14 deletions charts/langsmith/templates/frontend/config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,26 +58,35 @@ data:
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
}
location ~ /{{ .Values.ingress.subdomain }}/api/v1/auth {
rewrite /{{ .Values.ingress.subdomain }}/api/v1/(.*) /$1 break;
location ~ /{{ .Values.ingress.subdomain }}/api/v1/otel/ {
rewrite /{{ .Values.ingress.subdomain }}/api/v1/otel/(.*) /otel/$1 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 }};
}
location ~ /{{ .Values.ingress.subdomain }}/api/public {
rewrite /{{ .Values.ingress.subdomain }}/api/public/(.*) /public/$1 break;
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 }};
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
}
location = /{{ .Values.ingress.subdomain }}/api/v1/info {
rewrite /{{ .Values.ingress.subdomain }}/api/v1/info /info break;
location ~ /{{ .Values.ingress.subdomain }}/api/v1/auth {
rewrite /{{ .Values.ingress.subdomain }}/api/v1/(.*) /$1 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 }};
}
location ~ /{{ .Values.ingress.subdomain }}/api/public {
rewrite /{{ .Values.ingress.subdomain }}/api/public/(.*) /public/$1 break;
proxy_set_header Connection '';
proxy_http_version 1.1;
proxy_buffering off;
Expand Down Expand Up @@ -197,26 +206,35 @@ data:
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
}
location ~ /api/v1/auth {
rewrite /api/v1/(.*) /$1 break;
location ~ /api/v1/otel/ {
rewrite /api/v1/otel/(.*) /otel/$1 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 }};
}
location ~ /api/public {
rewrite /api/public/(.*) /public/$1 break;
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 }};
}
}
location = /api/v1/info {
rewrite /api/v1/info /info break;
location ~ /api/v1/auth {
rewrite /api/v1/(.*) /$1 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 }};
}
location ~ /api/public {
rewrite /api/public/(.*) /public/$1 break;
proxy_set_header Connection '';
proxy_http_version 1.1;
proxy_buffering off;
Expand Down
10 changes: 5 additions & 5 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ images:
aceBackendImage:
repository: "docker.io/langchain/langsmith-ace-backend"
pullPolicy: IfNotPresent
tag: "0.8.73"
tag: "0.8.84"
backendImage:
repository: "docker.io/langchain/langsmith-backend"
pullPolicy: IfNotPresent
tag: "0.8.73"
tag: "0.8.84"
frontendImage:
repository: "docker.io/langchain/langsmith-frontend"
pullPolicy: IfNotPresent
tag: "0.8.73"
tag: "0.8.84"
platformBackendImage:
repository: "docker.io/langchain/langsmith-go-backend"
pullPolicy: IfNotPresent
tag: "0.8.73"
tag: "0.8.84"
playgroundImage:
repository: "docker.io/langchain/langsmith-playground"
pullPolicy: IfNotPresent
tag: "0.8.73"
tag: "0.8.84"
postgresImage:
repository: "docker.io/postgres"
pullPolicy: IfNotPresent
Expand Down

0 comments on commit 765c40c

Please sign in to comment.