Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ All notable changes to this project will be documented in this file.
### Added

- Helm: Allow Pod `priorityClassName` to be configured ([#890]).
- Add experimental support for Kafka KRaft mode ([#889]).
- Add experimental support for Kafka `4.1.0` ([#889]).

### Changed

- Deprecate support for Kafka `3.7.2` ([#892]).

[#889]: https://github.com/stackabletech/kafka-operator/pull/889
[#890]: https://github.com/stackabletech/kafka-operator/pull/890
[#892]: https://github.com/stackabletech/kafka-operator/pull/892

## [25.7.0] - 2025-07-23

Expand Down
10 changes: 5 additions & 5 deletions docs/modules/kafka/pages/usage-guide/security.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
zookeeperConfigMapName: simple-kafka-znode
tls:
Expand Down Expand Up @@ -95,7 +95,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authentication:
- authenticationClass: kafka-client-tls # <1>
Expand Down Expand Up @@ -140,7 +140,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authentication:
- authenticationClass: kafka-client-kerberos # <1>
Expand Down Expand Up @@ -184,7 +184,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authorization:
opa:
Expand All @@ -208,7 +208,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authorization:
opa:
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/kafka/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
// Stackable Platform documentation.

* 4.1.0 (experimental)
* 3.9.1
* 3.7.2 (LTS)
* 3.9.1 (LTS)
* 3.7.2 (deprecated)
2 changes: 1 addition & 1 deletion examples/logging/simple-kafka-cluster-opa-log4j.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authorization:
opa:
Expand Down
2 changes: 1 addition & 1 deletion examples/opa/simple-kafka-cluster-opa-allow-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authorization:
opa:
Expand Down
2 changes: 1 addition & 1 deletion examples/tls/simple-kafka-cluster-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ metadata:
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authentication:
- authenticationClass: kafka-client-auth-tls
Expand Down
4 changes: 2 additions & 2 deletions rust/operator-binary/src/config/jvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
zookeeperConfigMapName: xyz
brokers:
Expand Down Expand Up @@ -144,7 +144,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
zookeeperConfigMapName: xyz
brokers:
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/crd/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
zookeeperConfigMapName: xyz
brokers:
Expand Down
4 changes: 2 additions & 2 deletions rust/operator-binary/src/crd/listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ mod tests {
namespace: default
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authentication:
- authenticationClass: kafka-client-tls
Expand Down Expand Up @@ -563,7 +563,7 @@ mod tests {
namespace: default
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
authentication:
- authenticationClass: kafka-kerberos
Expand Down
14 changes: 7 additions & 7 deletions rust/operator-binary/src/crd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
zookeeperConfigMapName: xyz
"#;
Expand All @@ -449,7 +449,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
tls:
serverSecretClass: simple-kafka-server-tls
Expand All @@ -474,7 +474,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
tls:
serverSecretClass: null
Expand All @@ -495,7 +495,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
zookeeperConfigMapName: xyz
clusterConfig:
tls:
Expand All @@ -520,7 +520,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
zookeeperConfigMapName: xyz
"#;
Expand All @@ -539,7 +539,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
tls:
internalSecretClass: simple-kafka-internal-tls
Expand All @@ -560,7 +560,7 @@ mod tests {
name: simple-kafka
spec:
image:
productVersion: 3.7.2
productVersion: 3.9.1
clusterConfig:
tls:
serverSecretClass: simple-kafka-server-tls
Expand Down
6 changes: 3 additions & 3 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ dimensions:
- 3.9.1
# Alternatively, if you want to use a custom image, append a comma and the full image name to the product version
# as in the example below.
# - 3.8.0,oci.stackable.tech/sdp/kafka:3.8.0-stackable0.0.0-dev
# - 3.9.1,oci.stackable.tech/sdp/kafka:3.9.1-stackable0.0.0-dev
- name: kafka-latest
values:
- 3.7.2 # Using LTS version here
- 3.9.1 # Using LTS version here
# Alternatively, if you want to use a custom image, append a comma and the full image name to the product version
# as in the example below.
# - 3.7.2,oci.stackable.tech/sdp/kafka:3.7.2-stackable0.0.0-dev
# - 3.9.1,oci.stackable.tech/sdp/kafka:3.9.1-stackable0.0.0-dev
- name: zookeeper
values:
- 3.9.3
Expand Down
Loading