Skip to content

Commit

Permalink
connect: bumped version and added telemetry parameter (#1602)
Browse files Browse the repository at this point in the history
* feat: increase connect version and add new config parameter

* docs: add option to README (manually)

* docs: update shields

* docs: reorder attributes in README

* docs: added empty line

* docs: updated changelog
  • Loading branch information
dersvenhesse authored Nov 19, 2024
1 parent 97fb95a commit 963fb71
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,12 @@
#### Removed

## Connect Chart
### [3.0.1](https://github.com/redpanda-data/helm-charts/releases/tag/connect-3.0.1)
#### Added
* Parameter to configure submitting anonymous telemetry data
#### Changed
* Bump Connect app version to 4.39.0

### [3.0.0](https://github.com/redpanda-data/helm-charts/releases/tag/connect-3.0.0)
#### Added
* Refreshed chart and migrated from [the old standalone repo](https://github.com/redpanda-data/redpanda-connect-helm-chart)
6 changes: 3 additions & 3 deletions charts/connect/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ type: application
# The chart version and the app version are not the same and will not track
# together. The chart version is a semver representation of changes to this
# chart.
version: 3.0.0
version: 3.0.1

# The app version is the default version of Redpanda to install.
# ** NOTE for maintainers: please ensure the artifacthub image annotation is updated before merging
appVersion: "4.38.0"
appVersion: "4.39.0"

sources:
- https://github.com/redpanda-data/helm-charts
Expand All @@ -41,6 +41,6 @@ annotations:
url: https://helm.sh/docs/intro/install/
artifacthub.io/images: |
- name: redpanda
image: docker.redpanda.com/redpandadata/connect:4.38.0
image: docker.redpanda.com/redpandadata/connect:4.39.0
- name: busybox
image: busybox:latest
6 changes: 5 additions & 1 deletion charts/connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
description: Find the default values and descriptions of settings in the Redpanda Connect Helm chart.
---

![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.38.0](https://img.shields.io/badge/AppVersion-4.38.0-informational?style=flat-square)
![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.39.0](https://img.shields.io/badge/AppVersion-4.39.0-informational?style=flat-square)

Redpanda Connect is a high performance and resilient stream processor, able to connect various sources and sinks in a range of brokering patterns and perform hydration, enrichments, transformations and filters on payloads.

Expand Down Expand Up @@ -392,6 +392,10 @@ Enable a [PodDisruptionBudget](https://kubernetes.io/docs/tasks/run-application/
**Default:** `""`
### [telemetry](https://artifacthub.io/packages/helm/redpanda-data/redpanda?modal=values&path=telemetry)
**Default:** `true`
### [tolerations](https://artifacthub.io/packages/helm/redpanda-data/redpanda?modal=values&path=tolerations)
**Default:** `[]`
Expand Down
3 changes: 3 additions & 0 deletions charts/connect/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ spec:
{{- if eq .Values.watch true}}
- -w
{{- end }}
{{- if eq .Values.telemetry false}}
- --disable-telemetry
{{- end }}
{{- if and .Values.streams.enabled .Values.streams.streamsConfigMap }}
- "streams"
{{- if eq .Values.streams.api.enable false }}
Expand Down
5 changes: 4 additions & 1 deletion charts/connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,10 @@ args: []
# EXPERIMENTAL: watch config files for changes and automatically apply them
watch: false

# Spread incoming Pod in relation to the existing Pods across your cluster. https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/#topologyspreadconstraints-field
# Allow submitting anonymous telemetry data
telemetry: true

# Spread incoming Pod in relation to the existing Pods across your cluster. https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/#topologyspreadconstraints-field
topologySpreadConstraints: []

# /redpanda-connect.yaml configuration
Expand Down

0 comments on commit 963fb71

Please sign in to comment.