From 63f098b99c4f7da3c49d24d01805bc01f60939fe Mon Sep 17 00:00:00 2001 From: infra Date: Thu, 27 Jun 2024 10:49:30 -0400 Subject: [PATCH 1/4] chore: bump 0.6.20 --- charts/langsmith/Chart.yaml | 4 ++-- charts/langsmith/values.yaml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/langsmith/Chart.yaml b/charts/langsmith/Chart.yaml index a3ef437..da6ef61 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.6.6 -appVersion: "0.6.19" +version: 0.6.7 +appVersion: "0.6.20" diff --git a/charts/langsmith/values.yaml b/charts/langsmith/values.yaml index 510ea8b..bf4cbb3 100644 --- a/charts/langsmith/values.yaml +++ b/charts/langsmith/values.yaml @@ -15,19 +15,19 @@ images: backendImage: repository: "docker.io/langchain/langsmith-backend" pullPolicy: IfNotPresent - tag: "0.6.19" + tag: "0.6.20" frontendImage: repository: "docker.io/langchain/langsmith-frontend" pullPolicy: IfNotPresent - tag: "0.6.19" + tag: "0.6.20" platformBackendImage: repository: "docker.io/langchain/langsmith-go-backend" pullPolicy: IfNotPresent - tag: "0.6.19" + tag: "0.6.20" playgroundImage: repository: "docker.io/langchain/langsmith-playground" pullPolicy: IfNotPresent - tag: "0.6.19" + tag: "0.6.20" postgresImage: repository: "docker.io/postgres" pullPolicy: IfNotPresent From a932e0218a41d4ae4cfc24dccb7518d84a65f969 Mon Sep 17 00:00:00 2001 From: infra Date: Thu, 27 Jun 2024 11:07:34 -0400 Subject: [PATCH 2/4] chore: bump 0.6.20 --- .github/workflows/helm_checks.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm_checks.yaml b/.github/workflows/helm_checks.yaml index 86b81bd..0e6fa86 100644 --- a/.github/workflows/helm_checks.yaml +++ b/.github/workflows/helm_checks.yaml @@ -38,4 +38,5 @@ jobs: env: LANGSMITH_LICENSE_KEY: ${{ secrets.LANGSMITH_LICENSE_KEY }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - run: ct install --target-branch ${{ github.event.repository.default_branch }} --all --helm-extra-set-args "--set=frontend.service.type=ClusterIP --set=config.langsmithLicenseKey=$LANGSMITH_LICENSE_KEY --set=config.openaiApiKey=$OPENAI_API_KEY --set=backend.service.type=ClusterIP --set=apiServer.service.type=ClusterIP" + LANGGRAPH_CLOUD_LICENSE_KEY: ${{ secrets.LANGGRAPH_CLOUD_LICENSE_KEY }} + run: ct install --target-branch ${{ github.event.repository.default_branch }} --all --helm-extra-set-args "--set=frontend.service.type=ClusterIP --set=config.langsmithLicenseKey=$LANGSMITH_LICENSE_KEY --set=config.langGraphCloudLicenseKey=$LANGGRAPH_CLOUD_LICENSE_KEY --set=config.openaiApiKey=$OPENAI_API_KEY --set=backend.service.type=ClusterIP --set=apiServer.service.type=ClusterIP" From 24b563633d06c6d9523ad19bae334b54e780ea9a Mon Sep 17 00:00:00 2001 From: infra Date: Thu, 27 Jun 2024 11:39:01 -0400 Subject: [PATCH 3/4] add port --- charts/langgraph-cloud/templates/api-server/deployment.yaml | 2 ++ charts/langgraph-cloud/values.yaml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/langgraph-cloud/templates/api-server/deployment.yaml b/charts/langgraph-cloud/templates/api-server/deployment.yaml index c214cbe..e1eba6f 100644 --- a/charts/langgraph-cloud/templates/api-server/deployment.yaml +++ b/charts/langgraph-cloud/templates/api-server/deployment.yaml @@ -42,6 +42,8 @@ spec: containers: - name: {{ .Values.apiServer.name }} env: + - name: PORT + value: {{ .Values.apiServer.containerPort | quote }} - name: POSTGRES_URI valueFrom: secretKeyRef: diff --git a/charts/langgraph-cloud/values.yaml b/charts/langgraph-cloud/values.yaml index 626e55b..4209216 100644 --- a/charts/langgraph-cloud/values.yaml +++ b/charts/langgraph-cloud/values.yaml @@ -15,7 +15,7 @@ images: # This should be the image you have built using the LangGraph Cli. Find more information here: apiServerImage: repository: "docker.io/langchain/langgraph-api" - pullPolicy: IfNotPresent + pullPolicy: Always tag: "3.11" postgresImage: repository: "docker.io/postgres" From f35655be1c089c036f65bb7f40ad184aae472b1a Mon Sep 17 00:00:00 2001 From: infra Date: Thu, 27 Jun 2024 11:43:37 -0400 Subject: [PATCH 4/4] add port --- charts/langgraph-cloud/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/langgraph-cloud/Chart.yaml b/charts/langgraph-cloud/Chart.yaml index 5badd53..af87582 100644 --- a/charts/langgraph-cloud/Chart.yaml +++ b/charts/langgraph-cloud/Chart.yaml @@ -5,5 +5,5 @@ maintainers: email: ankush@langchain.dev description: Helm chart to deploy the LangGraph Cloud application and all services it depends on. type: application -version: 0.1.1 +version: 0.1.2 appVersion: "0.1.0"