From e6778b5066bcbb70f559935aebdf032e963cb889 Mon Sep 17 00:00:00 2001 From: langchain-infra Date: Wed, 27 Nov 2024 15:27:22 -0500 Subject: [PATCH] fix: use service account name (#190) --- charts/langgraph-cloud/Chart.yaml | 2 +- charts/langgraph-cloud/README.md | 2 +- charts/langgraph-cloud/templates/api-server/deployment.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/charts/langgraph-cloud/Chart.yaml b/charts/langgraph-cloud/Chart.yaml index e6087bb..1c96cf7 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.4 +version: 0.1.5 appVersion: "0.2.0" diff --git a/charts/langgraph-cloud/README.md b/charts/langgraph-cloud/README.md index df10027..1d0599e 100644 --- a/charts/langgraph-cloud/README.md +++ b/charts/langgraph-cloud/README.md @@ -1,6 +1,6 @@ # langgraph-cloud -![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.0](https://img.shields.io/badge/AppVersion-0.2.0-informational?style=flat-square) +![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.0](https://img.shields.io/badge/AppVersion-0.2.0-informational?style=flat-square) Helm chart to deploy the LangGraph Cloud application and all services it depends on. diff --git a/charts/langgraph-cloud/templates/api-server/deployment.yaml b/charts/langgraph-cloud/templates/api-server/deployment.yaml index 6b56a02..0427fb1 100644 --- a/charts/langgraph-cloud/templates/api-server/deployment.yaml +++ b/charts/langgraph-cloud/templates/api-server/deployment.yaml @@ -33,6 +33,7 @@ spec: {{- include "langGraphCloud.labels" . | nindent 8 }} app.kubernetes.io/component: {{ include "langGraphCloud.fullname" . }}-{{ .Values.apiServer.name }} spec: + serviceAccountName: {{ include "apiServer.serviceAccountName" . }} {{- with .Values.images.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }}