Skip to content

Commit

Permalink
Merge pull request #43 from langchain-ai/infra/bump-chart-version
Browse files Browse the repository at this point in the history
Bump chart version with a few changes
  • Loading branch information
langchain-infra authored Jan 12, 2024
2 parents 7ee153d + 4c2170e commit 4f793d6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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.2.0
version: 0.2.1
appVersion: "0.1.0"
2 changes: 2 additions & 0 deletions charts/langsmith/templates/clickhouse/config-map.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if not .Values.clickhouse.external.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
Expand All @@ -18,3 +19,4 @@ data:
</default>
</users>
</clickhouse>
{{- end }}
2 changes: 1 addition & 1 deletion charts/langsmith/templates/clickhouse/service-account.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.clickhouse.serviceAccount.create -}}
{{- if and (not .Values.clickhouse.external.enabled) .Values.clickhouse.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/templates/postgres/service-account.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.postgres.serviceAccount.create -}}
{{- if and (not .Values.postgres.external.enabled) .Values.postgres.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/templates/redis/service-account.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.redis.serviceAccount.create -}}
{{- if and (not .Values.redis.external.enabled) .Values.redis.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down

0 comments on commit 4f793d6

Please sign in to comment.