Skip to content

Commit a8d3305

Browse files
committed
Release 0.5.0-rc1
1 parent b8779a6 commit a8d3305

File tree

11 files changed

+20
-20
lines changed

11 files changed

+20
-20
lines changed

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>0.5.0-SNAPSHOT</version>
7+
<version>0.5.0-RC1</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>api</artifactId>

certificate-manager/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>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0-RC1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>certificate-manager</artifactId>

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>0.5.0-SNAPSHOT</version>
7+
<version>0.5.0-RC1</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>cluster-operator</artifactId>

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>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0-RC1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>crd-generator</artifactId>

examples/install/cluster-operator/05-Deployment-strimzi-cluster-operator.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
serviceAccountName: strimzi-cluster-operator
1313
containers:
1414
- name: strimzi-cluster-operator
15-
image: strimzi/cluster-operator:latest
15+
image: strimzi/cluster-operator:0.5.0-rc1
1616
env:
1717
- name: STRIMZI_NAMESPACE
1818
valueFrom:
@@ -23,23 +23,23 @@ spec:
2323
- name: STRIMZI_OPERATION_TIMEOUT_MS
2424
value: "300000"
2525
- name: STRIMZI_DEFAULT_ZOOKEEPER_IMAGE
26-
value: strimzi/zookeeper:latest
26+
value: strimzi/zookeeper:0.5.0-rc1
2727
- name: STRIMZI_DEFAULT_KAFKA_IMAGE
28-
value: strimzi/kafka:latest
28+
value: strimzi/kafka:0.5.0-rc1
2929
- name: STRIMZI_DEFAULT_KAFKA_CONNECT_IMAGE
30-
value: strimzi/kafka-connect:latest
30+
value: strimzi/kafka-connect:0.5.0-rc1
3131
- name: STRIMZI_DEFAULT_KAFKA_CONNECT_S2I_IMAGE
32-
value: strimzi/kafka-connect-s2i:latest
32+
value: strimzi/kafka-connect-s2i:0.5.0-rc1
3333
- name: STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE
34-
value: strimzi/topic-operator:latest
34+
value: strimzi/topic-operator:0.5.0-rc1
3535
- name: STRIMZI_DEFAULT_KAFKA_INIT_IMAGE
36-
value: strimzi/kafka-init:latest
36+
value: strimzi/kafka-init:0.5.0-rc1
3737
- name: STRIMZI_DEFAULT_TLS_SIDECAR_ZOOKEEPER_IMAGE
38-
value: strimzi/zookeeper-stunnel:latest
38+
value: strimzi/zookeeper-stunnel:0.5.0-rc1
3939
- name: STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGE
40-
value: strimzi/kafka-stunnel:latest
40+
value: strimzi/kafka-stunnel:0.5.0-rc1
4141
- name: STRIMZI_DEFAULT_TLS_SIDECAR_TOPIC_OPERATOR_IMAGE
42-
value: strimzi/topic-operator-stunnel:latest
42+
value: strimzi/topic-operator-stunnel:0.5.0-rc1
4343
- name: STRIMZI_LOG_LEVEL
4444
value: INFO
4545
livenessProbe:

examples/install/topic-operator/04-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
serviceAccountName: strimzi-topic-operator
1313
containers:
1414
- name: strimzi-topic-operator
15-
image: strimzi/topic-operator:latest
15+
image: strimzi/topic-operator:0.5.0-rc1
1616
env:
1717
- name: STRIMZI_CONFIGMAP_LABELS
1818
value: "strimzi.io/kind=topic"

kafka-init/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>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0-RC1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>kafka-init</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>io.strimzi</groupId>
66
<artifactId>strimzi</artifactId>
77
<packaging>pom</packaging>
8-
<version>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0-RC1</version>
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

release.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0-SNAPSHOT
1+
0.5.0-RC1

systemtest/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>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0-RC1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

topic-operator/pom.xml

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

0 commit comments

Comments
 (0)