Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
facorazza committed Oct 10, 2024
2 parents 20b8d3c + 5179b03 commit 1e7bac3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/bento/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: bento
description: "Bento is a declarative data streaming service that solves a wide range of data engineering problems with simple, chained, stateless processing steps. It implements transaction based resiliency with back pressure, so when connecting to at-least-once sources and sinks it's able to guarantee at-least-once delivery without needing to persist messages during transit."
type: application
version: 0.3.0
version: 0.4.0
appVersion: "1.2.0"
icon: https://raw.githubusercontent.com/warpstreamlabs/bento/main/icon.png
annotations:
Expand Down
8 changes: 4 additions & 4 deletions charts/bento/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ spec:
{{- end }}
serviceAccountName: {{ include "bento.serviceAccountName" . }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- toYaml .Values.nodeSelector | nindent 8 }}
affinity:
{{- toYaml . | nindent 8 }}
{{- toYaml .Values.affinity | nindent 8 }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- toYaml .Values.tolerations | nindent 8 }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
Expand Down Expand Up @@ -64,7 +64,7 @@ spec:
mountPath: /bento.yaml
subPath: bento.yaml
readOnly: true
{{- with .Values.extraVolumes }}
{{- with .Values.extraVolumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
ports:
Expand Down

0 comments on commit 1e7bac3

Please sign in to comment.