You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added a chart wide `podTemplate` field which may be used to control Pod attributes chart wide.
4
+
5
+
This field has a lower precedence than `statefulset.podTemplate` and
6
+
`post_install_job.podTemplate` but will still be merged with them.
7
+
*`podTemplate`, `statefulset.podTemplate`, and `post_install_job.podTemplate` may now contain template expressions **with in string fields**
8
+
9
+
To compensate for some of the functionality that was lost with the removal of
10
+
fields like `extraVolumes`, we've upgraded `podTemplate` fields to support
11
+
templating. Rather than allowing full control over a structured value, we've
12
+
reduced the scope to only string fields. This is significantly more
13
+
maintainable and less error prone.
14
+
15
+
As an example, the below snippet will apply the release name as an annotation
16
+
to all Pods created by the chart.
17
+
18
+
```yaml
19
+
podTemplate:
20
+
annotations:
21
+
"keys-cannot-be-templated": '{{ .Release.Name }}'# But values can!
22
+
```
23
+
24
+
See `values.yaml` for additional examples.
25
+
### Changed
26
+
* Promoted the config-watcher sidecar into a real go binary that handles user management and simplifies cluster health checks so they no longer fail when the sole issue is that other nodes in the cluster are unavailable. Additionally the new sidecar subsumes the behavior of the `statefulset.sideCars.controllers` stanza which should now be specified via their own `enabled` flags.
27
+
* `clusterDomain` now defaults to `cluster.local.` (A trialing `.` has been added) and the chart no longer adds trailing `.`'s to internal domains.
28
+
29
+
For users not experiencing issues with trailing `.`'s this change has no
30
+
effect. For users that have had issues with trailing `.`'s, it's now possible
31
+
to opt-out of this behavior by explicitly setting `clusterDomain` to `cluster.local`.
32
+
33
+
For users that override `clusterDomain`, copied a previous releases
34
+
values.yaml, or use the `--reuse-values` flag, trailing `.`'s will be tripped
35
+
from domains upon updating. This behavior may be opted into by appending a
36
+
`.`to `clusterDomain` prior to upgrading.
37
+
* Bump AppVersion to v24.3.6 Redpanda release
38
+
* Bump Redpanda operator side car container tag to `v2.3.7-24.3.6`.
39
+
* `values.schema.json` is now "closed" (`additionalProperties: false`)
40
+
41
+
Any unexpected values will result in a validation error,previously they would
42
+
have been ignored.
43
+
* Update Console depedency to latest version with breaking change. Please visit Console change-log.
44
+
* The name of the container running redpanda is now always set to `redpanda`.
45
+
* bumped `appVersion` to [v25.1.1](https://github.com/redpanda-data/redpanda/releases/tag/v25.1.1).
46
+
### Removed
47
+
* Connectors sub-chart integration.
48
+
49
+
The connectors chart may still be deployed separately, though it is not
50
+
officially support. If possible, it is recommended to migrate to redpanda
51
+
connect.
52
+
* Removed the deprecated fields `license_key` and `license_secret_ref` in favor
53
+
of `enterprise.license` and `enterprise.licenseSecretRef`, respectively.
54
+
* `statefulset.securityContext`, `statefulset.sideCars.configWatcher.securityContext` have been removed.
55
+
56
+
These fields previously served as both PodSecurityContext and SecurityContext
57
+
across the entire chart which led to confusing semantics that couldn't be
58
+
fixed without breaking backwards compatiblity.
59
+
60
+
The top level `podTemplate` field may be used to control
61
+
PodSecurityContexts and SecurityContexts across the chart.
62
+
* Fields that would be better served through `podTemplate` have been removed in favor of using `podTemplate`.
Copy file name to clipboardExpand all lines: charts/redpanda/CHANGELOG.md
+99Lines changed: 99 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,105 @@ of `enterprise.license` and `enterprise.licenseSecretRef`, respectively.
104
104
* Fixed an issue where not explicitly specifying a SASL auth mechanism when SASL is enabled caused Console to fail to start up.
105
105
* Prevent broker nodes from restarting when solely the cluster replica amount changes
106
106
107
+
## v25.1.1-beta1 - 2025-04-08
108
+
### Added
109
+
* Added a chart wide `podTemplate` field which may be used to control Pod attributes chart wide.
110
+
111
+
This field has a lower precedence than `statefulset.podTemplate` and
112
+
`post_install_job.podTemplate`but will still be merged with them.
113
+
* `podTemplate`, `statefulset.podTemplate`, and `post_install_job.podTemplate` may now contain template expressions **with in string fields**
114
+
115
+
To compensate for some of the functionality that was lost with the removal of
116
+
fields like `extraVolumes`, we've upgraded `podTemplate` fields to support
117
+
templating. Rather than allowing full control over a structured value, we've
118
+
reduced the scope to only string fields. This is significantly more
119
+
maintainable and less error prone.
120
+
121
+
As an example, the below snippet will apply the release name as an annotation
122
+
to all Pods created by the chart.
123
+
124
+
```yaml
125
+
podTemplate:
126
+
annotations:
127
+
"keys-cannot-be-templated": '{{ .Release.Name }}' # But values can!
128
+
```
129
+
130
+
See `values.yaml` for additional examples.
131
+
### Changed
132
+
* Promoted the config-watcher sidecar into a real go binary that handles user management and simplifies cluster health checks so they no longer fail when the sole issue is that other nodes in the cluster are unavailable. Additionally the new sidecar subsumes the behavior of the `statefulset.sideCars.controllers` stanza which should now be specified via their own `enabled` flags.
133
+
* `clusterDomain` now defaults to `cluster.local.` (A trialing `.` has been added) and the chart no longer adds trailing `.`'s to internal domains.
134
+
135
+
For users not experiencing issues with trailing `.`'s this change has no
136
+
effect. For users that have had issues with trailing `.`'s, it's now possible
137
+
to opt-out of this behavior by explicitly setting `clusterDomain` to `cluster.local`.
138
+
139
+
For users that override `clusterDomain`, copied a previous releases
140
+
values.yaml, or use the `--reuse-values` flag, trailing `.`'s will be tripped
141
+
from domains upon updating. This behavior may be opted into by appending a
142
+
`.`to `clusterDomain` prior to upgrading.
143
+
* Bump AppVersion to v24.3.6 Redpanda release
144
+
* Bump Redpanda operator side car container tag to `v2.3.7-24.3.6`.
145
+
* `values.schema.json` is now "closed" (`additionalProperties: false`)
146
+
147
+
Any unexpected values will result in a validation error,previously they would
148
+
have been ignored.
149
+
* Update Console depedency to latest version with breaking change. Please visit Console change-log.
150
+
* The name of the container running redpanda is now always set to `redpanda`.
151
+
* bumped `appVersion` to [v25.1.1](https://github.com/redpanda-data/redpanda/releases/tag/v25.1.1).
152
+
### Removed
153
+
* Connectors sub-chart integration.
154
+
155
+
The connectors chart may still be deployed separately, though it is not
156
+
officially support. If possible, it is recommended to migrate to redpanda
157
+
connect.
158
+
* Removed the deprecated fields `license_key` and `license_secret_ref` in favor
159
+
of `enterprise.license` and `enterprise.licenseSecretRef`, respectively.
160
+
* `statefulset.securityContext`, `statefulset.sideCars.configWatcher.securityContext` have been removed.
161
+
162
+
These fields previously served as both PodSecurityContext and SecurityContext
163
+
across the entire chart which led to confusing semantics that couldn't be
164
+
fixed without breaking backwards compatiblity.
165
+
166
+
The top level `podTemplate` field may be used to control
167
+
PodSecurityContexts and SecurityContexts across the chart.
168
+
* Fields that would be better served through `podTemplate` have been removed in favor of using `podTemplate`.
This page describes the official Redpanda Helm Chart. In particular, this page describes the contents of the chart’s [`values.yaml` file](https://github.com/redpanda-data/helm-charts/blob/main/charts/redpanda/values.yaml). Each of the settings is listed and described on this page, along with any default values.
0 commit comments