Skip to content

Add support for Kafka 3.9.1 and update 0.46.1 changelog #11563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .checksums
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
# development version of the helm charts in ./packaging/helm-charts
### IMPORTANT ###
HELM_CHART_CHECKSUM="f55d186612d8be00ff8ee43bf74042d52d40e10a -"
HELM_CHART_CHECKSUM="511514942f1e775bb45568140bf5aa9ffd7984de -"

### IMPORTANT ###
# if the below line has changed, this means the ./install directory has changed
# the checksum and ./install directory should only be modified on official releases as part of a release
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
# development version of the helm charts in ./packaging/install
### IMPORTANT ###
INSTALL_CHECKSUM="6699fa3526fded7a01d4d475345ba51b46f99fff -"
INSTALL_CHECKSUM="604b3eabe838f90ed62268f54a97e9dae77d92df -"

### IMPORTANT ###
# if the below line has changed, this means the ./examples directory has changed
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.46.1

* Update CSV file for OLM installation to add missing permission for broker Pods to "get" nodes Kube resource.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Update CSV file for OLM installation to add missing permission for broker Pods to "get" nodes Kube resource.
* Update CSV file for OLM installation to add missing permission for broker Pods to "get" nodes Kubernetes resource.

* Allow the injection of annotations on the deployment object in Helm charts.
* Add support for Kafka 3.9.1

## 0.46.0

* Add support for Kafka 4.0.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class KafkaVersionTestUtils {
public static final String LATEST_KAFKA_CONNECT_IMAGE = KAFKA_CONNECT_IMAGE_STR + LATEST_KAFKA_VERSION;
public static final String LATEST_KAFKA_MIRROR_MAKER_2_IMAGE = KAFKA_MIRROR_MAKER_2_IMAGE_STR + LATEST_KAFKA_VERSION;

public static final String PREVIOUS_KAFKA_VERSION = "3.9.0";
public static final String PREVIOUS_KAFKA_VERSION = "3.9.1";
public static final String PREVIOUS_FORMAT_VERSION = "3.9";
public static final String PREVIOUS_PROTOCOL_VERSION = "3.9";
public static final String PREVIOUS_METADATA_VERSION = "3.9-IV0";
Expand Down
1 change: 1 addition & 0 deletions documentation/modules/snip-images.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
|Kafka
a|
* {DockerOrg}/kafka:{DockerTag}-kafka-3.9.0
* {DockerOrg}/kafka:{DockerTag}-kafka-3.9.1
* {DockerOrg}/kafka:{DockerTag}-kafka-4.0.0

a|
Expand Down
2 changes: 1 addition & 1 deletion documentation/shared/attributes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
:DefaultKafkaMetadataVersion: 4.0
:KafkaMetadataVersionLower: 3.9-IV0
:KafkaMetadataVersionHigher: 4.0-IV3
:KafkaVersionLower: 3.9.0
:KafkaVersionLower: 3.9.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this lower still be 3.9.0? @scholzj ?

:KafkaVersionHigher: 4.0.0
:ExampleImageTagUpgrades: quay.io/strimzi/kafka:{ProductVersion}-kafka-{KafkaVersionHigher}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@
- name: STRIMZI_KAFKA_IMAGES
value: |
3.9.0={{ template "strimzi.image" (merge . (dict "key" "kafka" "tagSuffix" "-kafka-3.9.0")) }}
3.9.1={{ template "strimzi.image" (merge . (dict "key" "kafka" "tagSuffix" "-kafka-3.9.1")) }}
4.0.0={{ template "strimzi.image" (merge . (dict "key" "kafka" "tagSuffix" "-kafka-4.0.0")) }}
- name: STRIMZI_KAFKA_CONNECT_IMAGES
value: |
3.9.0={{ template "strimzi.image" (merge . (dict "key" "kafkaConnect" "tagSuffix" "-kafka-3.9.0")) }}
3.9.1={{ template "strimzi.image" (merge . (dict "key" "kafkaConnect" "tagSuffix" "-kafka-3.9.1")) }}
4.0.0={{ template "strimzi.image" (merge . (dict "key" "kafkaConnect" "tagSuffix" "-kafka-4.0.0")) }}
- name: STRIMZI_KAFKA_MIRROR_MAKER_2_IMAGES
value: |
3.9.0={{ template "strimzi.image" (merge . (dict "key" "kafkaMirrorMaker2" "tagSuffix" "-kafka-3.9.0")) }}
3.9.1={{ template "strimzi.image" (merge . (dict "key" "kafkaMirrorMaker2" "tagSuffix" "-kafka-3.9.1")) }}
4.0.0={{ template "strimzi.image" (merge . (dict "key" "kafkaMirrorMaker2" "tagSuffix" "-kafka-4.0.0")) }}
{{- end -}}
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,17 @@ spec:
- name: STRIMZI_KAFKA_IMAGES
value: |
3.9.0=quay.io/strimzi/kafka:0.46.1-kafka-3.9.0
3.9.1=quay.io/strimzi/kafka:0.46.1-kafka-3.9.1
4.0.0=quay.io/strimzi/kafka:0.46.1-kafka-4.0.0
- name: STRIMZI_KAFKA_CONNECT_IMAGES
value: |
3.9.0=quay.io/strimzi/kafka:0.46.1-kafka-3.9.0
3.9.1=quay.io/strimzi/kafka:0.46.1-kafka-3.9.1
4.0.0=quay.io/strimzi/kafka:0.46.1-kafka-4.0.0
- name: STRIMZI_KAFKA_MIRROR_MAKER_2_IMAGES
value: |
3.9.0=quay.io/strimzi/kafka:0.46.1-kafka-3.9.0
3.9.1=quay.io/strimzi/kafka:0.46.1-kafka-3.9.1
4.0.0=quay.io/strimzi/kafka:0.46.1-kafka-4.0.0
- name: STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE
value: quay.io/strimzi/operator:0.46.1
Expand Down
10 changes: 10 additions & 0 deletions kafka-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,16 @@
third-party-libs: 3.9.x
supported: true
default: false
- version: 3.9.1
format: 3.9
protocol: 3.9
metadata: 3.9
url: https://archive.apache.org/dist/kafka/3.9.1/kafka_2.13-3.9.1.tgz
checksum: 1EA204BA73411737A275429CA976D440F007FF0957B90B19BE41DC5A4BAE52617267769BE9F0B5791714D0B3C4C760605BD426FAEA39EDD90763585523FA2CFE
zookeeper: 3.8.4
third-party-libs: 3.9.x
supported: true
default: false
- version: 4.0.0
metadata: 4.0
url: https://archive.apache.org/dist/kafka/4.0.0/kafka_2.13-4.0.0.tgz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@
- name: STRIMZI_KAFKA_IMAGES
value: |
3.9.0={{ template "strimzi.image" (merge . (dict "key" "kafka" "tagSuffix" "-kafka-3.9.0")) }}
3.9.1={{ template "strimzi.image" (merge . (dict "key" "kafka" "tagSuffix" "-kafka-3.9.1")) }}
4.0.0={{ template "strimzi.image" (merge . (dict "key" "kafka" "tagSuffix" "-kafka-4.0.0")) }}
- name: STRIMZI_KAFKA_CONNECT_IMAGES
value: |
3.9.0={{ template "strimzi.image" (merge . (dict "key" "kafkaConnect" "tagSuffix" "-kafka-3.9.0")) }}
3.9.1={{ template "strimzi.image" (merge . (dict "key" "kafkaConnect" "tagSuffix" "-kafka-3.9.1")) }}
4.0.0={{ template "strimzi.image" (merge . (dict "key" "kafkaConnect" "tagSuffix" "-kafka-4.0.0")) }}
- name: STRIMZI_KAFKA_MIRROR_MAKER_2_IMAGES
value: |
3.9.0={{ template "strimzi.image" (merge . (dict "key" "kafkaMirrorMaker2" "tagSuffix" "-kafka-3.9.0")) }}
3.9.1={{ template "strimzi.image" (merge . (dict "key" "kafkaMirrorMaker2" "tagSuffix" "-kafka-3.9.1")) }}
4.0.0={{ template "strimzi.image" (merge . (dict "key" "kafkaMirrorMaker2" "tagSuffix" "-kafka-4.0.0")) }}
{{- end -}}
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,17 @@ spec:
- name: STRIMZI_KAFKA_IMAGES
value: |
3.9.0=quay.io/strimzi/kafka:0.46.1-kafka-3.9.0
3.9.1=quay.io/strimzi/kafka:0.46.1-kafka-3.9.1
4.0.0=quay.io/strimzi/kafka:0.46.1-kafka-4.0.0
- name: STRIMZI_KAFKA_CONNECT_IMAGES
value: |
3.9.0=quay.io/strimzi/kafka:0.46.1-kafka-3.9.0
3.9.1=quay.io/strimzi/kafka:0.46.1-kafka-3.9.1
4.0.0=quay.io/strimzi/kafka:0.46.1-kafka-4.0.0
- name: STRIMZI_KAFKA_MIRROR_MAKER_2_IMAGES
value: |
3.9.0=quay.io/strimzi/kafka:0.46.1-kafka-3.9.0
3.9.1=quay.io/strimzi/kafka:0.46.1-kafka-3.9.1
4.0.0=quay.io/strimzi/kafka:0.46.1-kafka-4.0.0
- name: STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE
value: quay.io/strimzi/operator:0.46.1
Expand Down