Releases: redpanda-data/redpanda-operator
operator: v25.3.1
Added
- ShadowLink CRD for controlling 25.3 shadow link settings. See documentation for details.
Changed
- Use the kube-system namespace by default for leader election when the operator is running in cluster-scoped mode.
charts/redpanda: v25.3.1
Changed
- Bump chart version to install 25.3.x releases by default
operator: v25.2.1
Added
- Roles can be declaratively managed using RedpandaRole CRD
- Add experimental support for node pools. To enable node pool support you must install the experimental NodePool CRDs and run the controller with the --enable-v2-nodepools flag.
- Added a new
ConsoleCRD for managing a Redpanda Console deployments. For examples, seeacceptance/features/console.feature. - Added
status.managedPrincipalsfield to RedpandaRole CRD to track whether the operator is managing role membership. The operator now properly reconciles membership changes when spec.principals is updated, including adding, removing, or clearing all principals.
Changed
-
By default, the operator now reconciles resources (
Redpanda,Topic, etc) across all namespaces.The
--namespaceflag may be used to scope the operator's watches to a single namespace. -
Client certificates are now named
$FULLNAME-$CERT-client-cert.
Deprecated
- The Redpanda console stanza (
.spec.clusterSpec.console) is now deprecated in favor of the stand-alone Console CRD. - Deprecated various fields in multiple CRDs for
kafka,adminAPI, andschemaRegistryunder the static configuration ofclusterSourceso that various fields that were only specifiable via an in-cluster secret can now be pulled via either external secret provider, in-cluster secret, config map, or inlined value. - The entirety of the
spec.clusterSpec.consoleblock in the Redpanda CR is now deprecated and will be removed in the future. Any Redpanda CR that contains one will automatically be migrated to a standalone Console CR with a back reference to the parent Redpanda CR. Note that these will not be automatically deleted when theconsolestanza is removed or when the parent Redpanda CR is deleted.
Fixed
- Fix a bug with the way the config-watcher sidecar syncs users. The Kubernetes mechanism for writing out a changed secret is involves re-creating a symlink in the secrets directory that points to the mounted secret. Previously the config-watcher only detected changes to the entire directory and could potentially miss syncs, this resyncs everything anytime the symlink is recreated.
- mTLS client certificates are now generated per certificate, as required, instead of using a single and potentially invalid certificate.
charts/redpanda: v25.2.1
Added
-
Added a chart wide
podTemplatefield which may be used to control Pod attributes chart wide.This field has a lower precedence than
statefulset.podTemplateand
post_install_job.podTemplatebut will still be merged with them. -
podTemplate,statefulset.podTemplate, andpost_install_job.podTemplatemay now contain template expressions with in string fieldsTo compensate for some of the functionality that was lost with the removal of
fields likeextraVolumes, we've upgradedpodTemplatefields to support
templating. Rather than allowing full control over a structured value, we've
reduced the scope to only string fields. This is significantly more
maintainable and less error prone.As an example, the below snippet will apply the release name as an annotation
to all Pods created by the chart.podTemplate: annotations: "keys-cannot-be-templated": '{{ .Release.Name }}' # But values can!
See
values.yamlfor additional examples. -
statefulset.initContainers.configurator.additionalCLIArgs is added to the helm values, to enable the init container to construct an external secret evaluator.
In the v2 operator, this value is defaulted from the operator's settings.
Changed
-
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.controllersstanza which should now be specified via their ownenabledflags. -
clusterDomainnow defaults tocluster.local.(A trialing.has been added) and the chart no longer adds trailing.'s to internal domains.For users not experiencing issues with trailing
.'s this change has no
effect. For users that have had issues with trailing.'s, it's now possible
to opt-out of this behavior by explicitly settingclusterDomaintocluster.local.For users that override
clusterDomain, copied a previous releases
values.yaml, or use the--reuse-valuesflag, trailing.'s will be tripped
from domains upon updating. This behavior may be opted into by appending a
.toclusterDomainprior to upgrading. -
Bump AppVersion to v24.3.6 Redpanda release
-
Bump Redpanda operator side car container tag to
v2.3.7-24.3.6. -
values.schema.jsonis now "closed" (additionalProperties: false)Any unexpected values will result in a validation error,previously they would
have been ignored. -
Update Console depedency to latest version with breaking change. Please visit Console change-log.
-
The name of the container running redpanda is now always set to
redpanda. -
bumped
appVersionto v25.1.1. -
serviceAccount.createnow defaults totrue.The previous behavior resulted in using the
defaultservice account and
extending it with all bindings generated from the chart. Such behavior is
unlikely to be desired. -
rpk debug bundle --namespace $NAMESPACEnow works by default.The chart now creates a set of
RolesandRoleBindingsthat satisfy the
requirements of runningrpk debug bundlefrom any redpanda Pod. These
permissions may be disabled by specifyingrbac.rpkDebugBundle=false.Additionally, the redpanda container now always has a Kubernetes
ServiceAccount token mounted to it to ensurerpk debug bundlecan be
executed successfully. -
Update Console depedency to latest version
v3.1.0. Please visit Console change-log. -
The generated bootstrap user password secret is now immutable. It was always intended to be a single-time generation, and now that is enforced at the Kubernetes API layer.
-
Cluster configuration syncing now sends the entire config instead of a minimal patch
Due to numerous divergences in how the operator, redpanda and their
respective underlying YAML serde libraries handle marshalling data, computing
a minimal diff has generally resulted in nasty bugs not worth the few bytes
and CPU cycles we were initially trying to save. -
The console integration (
console.enabled=true) now uses the chart managed bootstrap user rather than the first user fromauth.sasl.users. -
Client certificates are now named
$FULLNAME-$CERT-client-cert.
Deprecated
.statefulset.sidecars.controllers.imageis now deprecated. It may be specified but will not be respected. Use.statefulset.sidecars.imageinstead.-
statefulset.sideCars.controllers.createRBACis deprecated and no longer respected. In most cases, setting this field tofalsewould result in a broken deployment. RBAC may be controlled viarbac.enabledor per controller viastatefulset.sideCars.controllers.{pvcUnbinder,brokerDecommissioner}.enabled.
statefulset.sideCars.controllers.runhas been unused for many releases and is now deprecated. Individual controllers may be enabled/disabled by setting their enabled field:statefulset.sideCars.pvcUnbinder.enabled,statefulset.sideCars.brokerDecommissioner.enabled.
Removed
-
Connectors sub-chart integration.
The connectors chart may still be deployed separately, though it is not
officially support. If possible, it is recommended to migrate to redpanda
connect. -
Removed the deprecated fields
license_keyandlicense_secret_refin favor
ofenterprise.licenseandenterprise.licenseSecretRef, respectively. -
statefulset.securityContext,statefulset.sideCars.configWatcher.securityContexthave been removed.These fields previously served as both PodSecurityContext and SecurityContext
across the entire chart which led to confusing semantics that couldn't be
fixed without breaking backwards compatiblity.The top level
podTemplatefield may be used to control
PodSecurityContexts and SecurityContexts across the chart. -
Fields that would be better served through
podTemplatehave been removed in favor of usingpodTemplate.Removed fields:
nodeSelector->podTemplate.spec.nodeSelectoraffinity->podTemplate.spec.affinitytolerations->podTemplate.spec.tolerationsimagePullSecrets->podTemplate.spec.imagePullSecretsstatefulset.annotations->statefulset.podTemplate.annotationsstatefulset.startupProbe->statefulset.podTemplate.spec.containers[0].startupProbestatefulset.livenessProbe->statefulset.podTemplate.spec.containers[0].livenessProbestatefulset.readinessProbe->statefulset.podTemplate.spec.containers[1].readinessProbestatefulset.podAffinity->statefulset.podTemplate.spec.affinity.podAffinitystatefulset.nodeSelector->statefulset.podTemplate.spec.nodeSelectorstatefulset.priorityClassName->statefulset.podTemplate.spec.priorityClassNamestatefulset.tolerations->statefulset.podTemplate.spec.tolerationsstatefulset.topologySpreadConstraints->statefulset.podTemplate.spec.topologySpreadConstraintsstatefulset.terminationGracePeriodSeconds->statefulset.podTemplate.spec.terminationGracePeriodSecondsstatefulset.extraVolumes->statefulset.podTemplate.spec.volumesstatefulset.extraVolumesMounts->statefulset.podTemplate.spec.containers[*].volumeMountsstatefulset.initContainers.*.extraVolumesMounts->statefulset.podTemplate.spec.initContainers[*].volumeMountsstatefulset.initContainers.*.resources->statefulset.podTemplate.spec.initContainers[*].resourcesstatefulset.initContainers.extraInitContainers->statefulset.podTemplate.spec.initContainersstatefulset.sidecars.configWatcher.extraVolumeMounts->statefulset.podTemplate.spec.containers[*].volumeMountsstatefulset.sidecars.configWatcher.resources->statefulset.podTemplate.spec.containers[*].resourcesstatefulset.sidecars.configWatcher.securityContext->statefulset.podTemplate.spec.containers[*].securityContextstatefulset.sidecars.controllers.resources->statefulset.podTemplate.spec.containers[*].resourcesstatefulset.sidecars.controllers.securityContext->statefulset.podTemplate.spec.containers[*].securityContextstatefulset.sidecars.extraVolumeMounts->statefulset.podTemplate.spec.containers[*].volumeMountsstatefulset.sidecars.resources->statefulset.podTemplate.spec.containers[*].resourcesstatefulset.sidecars.securityContext->statefulset.podTemplate.spec.containers[*].securityContext
-
Removed regex validation of all image tags.
-
The unrespected
kafkaEndpointlistener parameter has been removed fromvalues.yaml
Fixed
-
Reverse order of applying resources to first create ClusterRole and then ClusterRoleBinding.
When Redpanda custom resource has enabled RBAC the reconciliation was blocked due
ClusterRoleBinding referencing not yet created ClusterRole. -
Fixed an issue where not explicitly specifying a SASL auth mechanism when SASL is enabled caused Console to fail to start up.
-
Prevent broker nodes from restarting when solely the cluster replica amount changes
-
authentication_methodis no longer set onhttp_apias redpanda itself does not support authentication on the http API. -
Fixed rack awareness by mounting a service account token to the initcontainer when rack awareness is enabled.
-
Broken
Issuers andCertificates are no longer needlessly generated whentls.<cert>.issuerRefis provided. -
Fixed the security contexts' of
set-datadir-ownershipandset-tiered-storage-cache-dir-ownership. -
The
schema_registry_clientandpandaproxy_clientstanzas ofredpanda.yaml
now respectlisteners.kafka.tls.trustStore, when provided.
See also helm-chart 1573 issue. -
Corrected naming of
Roles to use Fullname instead of Name, which ensures they are unique within their namespace. -
Upda...
charts/console: v3.3.0
Changed
- Bump console chart version with new release of Console.
charts/redpanda: v5.9.30
Changed
- Bump Redpanda operator sidecar container tag to
v2.3.15-24.3.18.
Deprecated
-
statefulset.sideCars.controllers.createRBACis deprecated and no longer respected. In most cases, setting this field tofalsewould result in a broken deployment. RBAC may be controlled viarbac.enabledor per controller viastatefulset.sideCars.controllers.{pvcUnbinder,brokerDecommissioner}.enabled.
statefulset.sideCars.controllers.runhas been unused for many releases and is now deprecated. Individual controllers may be enabled/disabled by setting their enabled field:statefulset.sideCars.pvcUnbinder.enabled,statefulset.sideCars.brokerDecommissioner.enabled.
operator: v2.3.15-24.3.18
Changed
- Bump Redpanda helm chart dependency to 5.9.29
Fixed
-
ClusterRoles for the PVCUnbinder and BrokerDecommissioner are now enabled / disabled when their respective controller is enabled / disabled.Previously
ClusterRoles were always generated and could only be disabled by settingstatefulset.sideCars.controllers.createRBACtofalsewhich rendered the sidecar inoperable.
charts/redpanda: v5.9.29
Changed
- Bump Redpanda operator sidecar container tag to
v2.3.14-24.3.17.
charts/redpanda: v5.10.6
Changed
- Bump Redpanda operator sidecar container tag to 2.4.5
Deprecated
-
statefulset.sideCars.controllers.createRBACis deprecated and no longer respected. In most cases, setting this field tofalsewould result in a broken deployment. RBAC may be controlled viarbac.enabledor per controller viastatefulset.sideCars.controllers.{pvcUnbinder,brokerDecommissioner}.enabled.
statefulset.sideCars.controllers.runhas been unused for many releases and is now deprecated. Individual controllers may be enabled/disabled by setting their enabled field:statefulset.sideCars.pvcUnbinder.enabled,statefulset.sideCars.brokerDecommissioner.enabled.
operator: v2.4.6
Changed
- Client certificates are now named
$FULLNAME-$CERT-client-cert. - Bump Redpanda helm chart dependency to 5.10.5
Fixed
-
ClusterRoles for the PVCUnbinder and BrokerDecommissioner are now enabled / disabled when their respective controller is enabled / disabled.Previously
ClusterRoles were always generated and could only be disabled by settingstatefulset.sideCars.controllers.createRBACtofalsewhich rendered the sidecar inoperable. -
Fix a bug with the way the config-watcher sidecar syncs users. The Kubernetes mechanism for writing out a changed secret is involves re-creating a symlink in the secrets directory that points to the mounted secret. Previously the config-watcher only detected changes to the entire directory and could potentially miss syncs, this resyncs everything anytime the symlink is recreated.
-
mTLS client certificates are now generated per certificate, as required, instead of using a single and potentially invalid certificate.