Skip to content

Commit 1305b13

Browse files
authored
Add Strimzi 0.49.0 to the main branch (#12159)
Signed-off-by: Jakub Scholz <www@scholzj.com>
1 parent 1553dda commit 1305b13

90 files changed

Lines changed: 29249 additions & 2541 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.checksums

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
77
# development version of the helm charts in ./packaging/helm-charts
88
### IMPORTANT ###
9-
HELM_CHART_CHECKSUM="109b8564e3ee5f93e35cb29a06c2918be351c549 -"
9+
HELM_CHART_CHECKSUM="8b7ff80c84baeddf412ff824ab8d5623a49943a1 -"
1010

1111
### IMPORTANT ###
1212
# if the below line has changed, this means the ./install directory has changed
1313
# the checksum and ./install directory should only be modified on official releases as part of a release
1414
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
1515
# development version of the helm charts in ./packaging/install
1616
### IMPORTANT ###
17-
INSTALL_CHECKSUM="1910dae39cdb3b87989c0dfb255299d0d4b6f438 -"
17+
INSTALL_CHECKSUM="a0e922f2678b7d559ef0c130ba264818784f89bf -"
1818

1919
### IMPORTANT ###
2020
# if the below line has changed, this means the ./examples directory has changed
2121
# the checksum and ./examples directory should only be modified on official releases as part of a release
2222
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
2323
# development version of the helm charts in ./packaging/examples
2424
### IMPORTANT ###
25-
EXAMPLES_CHECKSUM="70b902afafe0a7e85d2d3b7669310dec03438218 -"
25+
EXAMPLES_CHECKSUM="006153237731a6389fd5c0e4a02a822c023c8e3d -"

examples/bridge/kafka-bridge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaBridge
33
metadata:
44
name: my-bridge
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaConnect
33
metadata:
44
name: my-connect-cluster
@@ -8,18 +8,18 @@ metadata:
88
# # needing to call the Connect REST API directly
99
# strimzi.io/use-connector-resources: "true"
1010
spec:
11-
version: 4.1.0
11+
version: 4.1.1
1212
replicas: 1
1313
bootstrapServers: my-cluster-kafka-bootstrap:9093
14+
groupId: my-connect-group
15+
configStorageTopic: my-connect-configs
16+
statusStorageTopic: my-connect-status
17+
offsetStorageTopic: my-connect-offsets
1418
tls:
1519
trustedCertificates:
1620
- secretName: my-cluster-cluster-ca-cert
1721
pattern: "*.crt"
1822
config:
19-
group.id: connect-cluster
20-
offset.storage.topic: connect-cluster-offsets
21-
config.storage.topic: connect-cluster-configs
22-
status.storage.topic: connect-cluster-status
2323
# -1 means it will use the default replication factor configured in the broker
2424
config.storage.replication.factor: -1
2525
offset.storage.replication.factor: -1
@@ -33,11 +33,11 @@ spec:
3333
# it should not happen that you pull someone else's container image. However, we
3434
# recommend changing this to your own container registry or using a different
3535
# image name for any other than demo purposes.
36-
image: ttl.sh/strimzi-connect-example-4.1.0:24h
36+
image: ttl.sh/strimzi-connect-example-4.1.1:24h
3737
plugins:
3838
- name: kafka-connect-file
3939
artifacts:
4040
- type: maven
4141
group: org.apache.kafka
4242
artifact: connect-file
43-
version: 4.1.0
43+
version: 4.1.1

examples/connect/kafka-connect.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaConnect
33
metadata:
44
name: my-connect-cluster
@@ -8,18 +8,18 @@ metadata:
88
# # needing to call the Connect REST API directly
99
# strimzi.io/use-connector-resources: "true"
1010
spec:
11-
version: 4.1.0
11+
version: 4.1.1
1212
replicas: 1
1313
bootstrapServers: my-cluster-kafka-bootstrap:9093
14+
groupId: my-connect-group
15+
configStorageTopic: my-connect-configs
16+
statusStorageTopic: my-connect-status
17+
offsetStorageTopic: my-connect-offsets
1418
tls:
1519
trustedCertificates:
1620
- secretName: my-cluster-cluster-ca-cert
1721
pattern: "*.crt"
1822
config:
19-
group.id: connect-cluster
20-
offset.storage.topic: connect-cluster-offsets
21-
config.storage.topic: connect-cluster-configs
22-
status.storage.topic: connect-cluster-status
2323
# -1 means it will use the default replication factor configured in the broker
2424
config.storage.replication.factor: -1
2525
offset.storage.replication.factor: -1

examples/connect/source-connector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# the strimzi.io/use-connector-resources annotation on the KafkaConnect custom resource.
33
# From Apache Kafka 3.1.1 and 3.2.0, you also have to add the FileStreamSourceConnector
44
# connector to the container image. You can do that using the kafka-connect-build.yaml example.
5-
apiVersion: kafka.strimzi.io/v1beta2
5+
apiVersion: kafka.strimzi.io/v1
66
kind: KafkaConnector
77
metadata:
88
name: my-source-connector

examples/cruise-control/kafka-cruise-control-auto-rebalancing.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaNodePool
33
metadata:
44
name: controller
@@ -16,7 +16,7 @@ spec:
1616
kraftMetadata: shared
1717
---
1818

19-
apiVersion: kafka.strimzi.io/v1beta2
19+
apiVersion: kafka.strimzi.io/v1
2020
kind: KafkaNodePool
2121
metadata:
2222
name: broker
@@ -34,13 +34,13 @@ spec:
3434
kraftMetadata: shared
3535
---
3636

37-
apiVersion: kafka.strimzi.io/v1beta2
37+
apiVersion: kafka.strimzi.io/v1
3838
kind: Kafka
3939
metadata:
4040
name: my-cluster
4141
spec:
4242
kafka:
43-
version: 4.1.0
43+
version: 4.1.1
4444
metadataVersion: 4.1-IV1
4545
listeners:
4646
- name: plain
@@ -69,7 +69,7 @@ spec:
6969
template:
7070
name: my-remove-brokers-rebalancing-template
7171
---
72-
apiVersion: kafka.strimzi.io/v1beta2
72+
apiVersion: kafka.strimzi.io/v1
7373
kind: KafkaRebalance
7474
metadata:
7575
name: my-add-brokers-rebalancing-template
@@ -78,7 +78,7 @@ metadata:
7878
# no goals specified, using the default goals from the Cruise Control configuration
7979
spec: {}
8080
---
81-
apiVersion: kafka.strimzi.io/v1beta2
81+
apiVersion: kafka.strimzi.io/v1
8282
kind: KafkaRebalance
8383
metadata:
8484
name: my-remove-brokers-rebalancing-template

examples/cruise-control/kafka-cruise-control-with-goals.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaNodePool
33
metadata:
44
name: controller
@@ -16,7 +16,7 @@ spec:
1616
kraftMetadata: shared
1717
---
1818

19-
apiVersion: kafka.strimzi.io/v1beta2
19+
apiVersion: kafka.strimzi.io/v1
2020
kind: KafkaNodePool
2121
metadata:
2222
name: broker
@@ -34,13 +34,13 @@ spec:
3434
kraftMetadata: shared
3535
---
3636

37-
apiVersion: kafka.strimzi.io/v1beta2
37+
apiVersion: kafka.strimzi.io/v1
3838
kind: Kafka
3939
metadata:
4040
name: my-cluster
4141
spec:
4242
kafka:
43-
version: 4.1.0
43+
version: 4.1.1
4444
metadataVersion: 4.1-IV1
4545
listeners:
4646
- name: plain

examples/cruise-control/kafka-cruise-control.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaNodePool
33
metadata:
44
name: controller
@@ -16,7 +16,7 @@ spec:
1616
kraftMetadata: shared
1717
---
1818

19-
apiVersion: kafka.strimzi.io/v1beta2
19+
apiVersion: kafka.strimzi.io/v1
2020
kind: KafkaNodePool
2121
metadata:
2222
name: broker
@@ -34,13 +34,13 @@ spec:
3434
kraftMetadata: shared
3535
---
3636

37-
apiVersion: kafka.strimzi.io/v1beta2
37+
apiVersion: kafka.strimzi.io/v1
3838
kind: Kafka
3939
metadata:
4040
name: my-cluster
4141
spec:
4242
kafka:
43-
version: 4.1.0
43+
version: 4.1.1
4444
metadataVersion: 4.1-IV1
4545
listeners:
4646
- name: plain

examples/cruise-control/kafka-rebalance-add-brokers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaRebalance
33
metadata:
44
name: my-rebalance

examples/cruise-control/kafka-rebalance-full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: kafka.strimzi.io/v1beta2
1+
apiVersion: kafka.strimzi.io/v1
22
kind: KafkaRebalance
33
metadata:
44
name: my-rebalance

0 commit comments

Comments
 (0)