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 30, 2024
2 parents dff0eee + c189fa1 commit da36032
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 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.5.1
version: 0.5.2
appVersion: "1.2.0"
icon: https://raw.githubusercontent.com/warpstreamlabs/bento/main/icon.png
annotations:
Expand Down
4 changes: 4 additions & 0 deletions charts/bento/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ spec:
securityContext:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand Down
13 changes: 7 additions & 6 deletions charts/bento/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ image:
nodeSelector: {}
tolerations: []
affinity: {}
hostAliases: []

podAnnotations: {}
podLabels: {}
Expand Down Expand Up @@ -70,14 +71,14 @@ env: []
# value: bucket
# - name: S3_BUCKET
# valueFrom:
# configMapKeyRef:
# name: s3-config
# key: bucket
# configMapKeyRef:
# name: s3-config
# key: bucket
# - name: S3_TOKEN
# valueFrom:
# secretKeyRef:
# name: s3-secrets
# key: token
# secretKeyRef:
# name: s3-secrets
# key: token

# Include ConfigMap objects
configMapRefs: []
Expand Down

0 comments on commit da36032

Please sign in to comment.