Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra committed Aug 10, 2024
1 parent 64df4f8 commit 2d56e41
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.6.23](https://img.shields.io/badge/Version-0.6.23-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.59](https://img.shields.io/badge/AppVersion-0.6.59-informational?style=flat-square)
![Version: 0.6.24](https://img.shields.io/badge/Version-0.6.24-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.62](https://img.shields.io/badge/AppVersion-0.6.62-informational?style=flat-square)

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

Expand Down
4 changes: 2 additions & 2 deletions charts/langsmith/templates/api_ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- host: {{ .Values.apiIngress.hostname }}
http:
paths:
- path: /{{ .Values.apiIngress.subdomain }}/api
- path: /{{ .Values.apiIngress.subdomain }}
pathType: Prefix
backend:
service:
Expand All @@ -36,7 +36,7 @@ spec:
- host: {{ .Values.apiIngress.hostname }}
http:
paths:
- path: /api
- path: /
pathType: Prefix
backend:
service:
Expand Down
6 changes: 3 additions & 3 deletions charts/langsmith/templates/frontend/config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ data:
listen [::]:{{ .Values.frontend.containerPort }};
server_name localhost;
client_max_body_size {{ .Values.frontend.maxBodySize }};
proxy_read_timeout ${{ .Values.frontend.proxyReadTimeout }};
proxy_connect_timeout ${{ .Values.frontend.proxyConnectTimeout }};
proxy_send_timeout ${{ .Values.frontend.proxyWriteTimeout }};
proxy_read_timeout {{ .Values.frontend.proxyReadTimeout }};
proxy_connect_timeout {{ .Values.frontend.proxyConnectTimeout }};
proxy_send_timeout {{ .Values.frontend.proxyWriteTimeout }};
location / {
root /tmp/build;
Expand Down

0 comments on commit 2d56e41

Please sign in to comment.