Skip to content

Commit dbf1c50

Browse files
committed
Prepare for Strimzi 1.2.0
Signed-off-by: Jakub Scholz <www@scholzj.com>
1 parent 87622d1 commit dbf1c50

77 files changed

Lines changed: 962 additions & 256 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="a0fae29261f8ed454743de75495cc2401b654bb3 -"
9+
HELM_CHART_CHECKSUM="ebe70bd656a7da01cd4e0557bc834adb3d2dfcb4 -"
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="cf6d0583e4e120eb95328dde88687ac4d4218ab4 -"
17+
INSTALL_CHECKSUM="781b12d316cc19747f4f37ffb05fe73bb3eaa65c -"
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="d2a558e58003788f47492a8fc26cdd777c13a85f -"
25+
EXAMPLES_CHECKSUM="ab80904f0d2caf14c5fb890ee36e0dc61d59974d -"

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.strimzi</groupId>
66
<artifactId>strimzi</artifactId>
7-
<version>1.2.0-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99
<name>Strimzi API</name>
1010
<modelVersion>4.0.0</modelVersion>

certificate-issuer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>strimzi</artifactId>
77
<groupId>io.strimzi</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<name>Strimzi Certificates Manager</name>
1111
<modelVersion>4.0.0</modelVersion>

cluster-operator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.strimzi</groupId>
66
<artifactId>strimzi</artifactId>
7-
<version>1.2.0-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99
<name>Strimzi Cluster Operator</name>
1010
<modelVersion>4.0.0</modelVersion>

config-model-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>strimzi</artifactId>
77
<groupId>io.strimzi</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<name>Kafka Configuration Model generator</name>
1111
<modelVersion>4.0.0</modelVersion>

config-model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>strimzi</artifactId>
77
<groupId>io.strimzi</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<name>Kafka Configuration Model</name>
1111
<modelVersion>4.0.0</modelVersion>

crd-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>strimzi</artifactId>
77
<groupId>io.strimzi</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<name>Strimzi CRD annotations</name>
1111
<modelVersion>4.0.0</modelVersion>

crd-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>strimzi</artifactId>
77
<groupId>io.strimzi</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<name>Strimzi CRD generator</name>
1111
<modelVersion>4.0.0</modelVersion>

examples/connect/kafka-connect-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
# # needing to call the Connect REST API directly
99
# strimzi.io/use-connector-resources: "true"
1010
spec:
11-
version: 4.3.0
11+
version: 4.3.1
1212
replicas: 1
1313
bootstrapServers: my-cluster-kafka-bootstrap:9093
1414
groupId: my-connect-group
@@ -40,4 +40,4 @@ spec:
4040
- type: maven
4141
group: org.apache.kafka
4242
artifact: connect-file
43-
version: 4.3.0
43+
version: 4.3.1

examples/connect/kafka-connect.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
# # needing to call the Connect REST API directly
99
# strimzi.io/use-connector-resources: "true"
1010
spec:
11-
version: 4.3.0
11+
version: 4.3.1
1212
replicas: 1
1313
bootstrapServers: my-cluster-kafka-bootstrap:9093
1414
groupId: my-connect-group

0 commit comments

Comments
 (0)