Skip to content

Commit e7992b3

Browse files
committed
Prepare for 0.6.0-rc2
1 parent f20a939 commit e7992b3

File tree

17 files changed

+47
-47
lines changed

17 files changed

+47
-47
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ release_pkg: helm_pkg
4242
release_helm_version:
4343
echo "Updating default image tags in Helm Chart to $(RELEASE_VERSION)"
4444
# Update default image tag in chart values.yaml to RELEASE_VERSION
45-
sed -i 's/\(tag: \)latest/\1$(RELEASE_VERSION)/g' $(CHART_PATH)values.yaml
45+
sed -i 's/\(tag: \).*/\1$(RELEASE_VERSION)/g' $(CHART_PATH)values.yaml
4646
# Update default image tag in chart README.md config grid with RELEASE_VERSION
47-
sed -i 's/\(image\.tag[^\n]*\| \)`latest`/\1`$(RELEASE_VERSION)`/g' $(CHART_PATH)README.md
47+
sed -i 's/\(image\.tag[^\n]*| \)`.*`/\1`$(RELEASE_VERSION)`/g' $(CHART_PATH)README.md
4848

4949
helm_pkg:
5050
# Copying unarchived Helm Chart to release directory

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.6.0-RC1</version>
7+
<version>0.6.0-RC2</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.6.0-RC1</version>
8+
<version>0.6.0-RC2</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.6.0-RC1</version>
7+
<version>0.6.0-RC2</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.6.0-RC1</version>
8+
<version>0.6.0-RC2</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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
serviceAccountName: strimzi-cluster-operator
1515
containers:
1616
- name: strimzi-cluster-operator
17-
image: strimzi/cluster-operator:0.6.0-rc1
17+
image: strimzi/cluster-operator:0.6.0-rc2
1818
imagePullPolicy: IfNotPresent
1919
env:
2020
- name: STRIMZI_NAMESPACE
@@ -26,25 +26,25 @@ spec:
2626
- name: STRIMZI_OPERATION_TIMEOUT_MS
2727
value: "300000"
2828
- name: STRIMZI_DEFAULT_ZOOKEEPER_IMAGE
29-
value: strimzi/zookeeper:0.6.0-rc1
29+
value: strimzi/zookeeper:0.6.0-rc2
3030
- name: STRIMZI_DEFAULT_KAFKA_IMAGE
31-
value: strimzi/kafka:0.6.0-rc1
31+
value: strimzi/kafka:0.6.0-rc2
3232
- name: STRIMZI_DEFAULT_KAFKA_CONNECT_IMAGE
33-
value: strimzi/kafka-connect:0.6.0-rc1
33+
value: strimzi/kafka-connect:0.6.0-rc2
3434
- name: STRIMZI_DEFAULT_KAFKA_CONNECT_S2I_IMAGE
35-
value: strimzi/kafka-connect-s2i:0.6.0-rc1
35+
value: strimzi/kafka-connect-s2i:0.6.0-rc2
3636
- name: STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE
37-
value: strimzi/topic-operator:0.6.0-rc1
37+
value: strimzi/topic-operator:0.6.0-rc2
3838
- name: STRIMZI_DEFAULT_USER_OPERATOR_IMAGE
39-
value: strimzi/user-operator:0.6.0-rc1
39+
value: strimzi/user-operator:0.6.0-rc2
4040
- name: STRIMZI_DEFAULT_KAFKA_INIT_IMAGE
41-
value: strimzi/kafka-init:0.6.0-rc1
41+
value: strimzi/kafka-init:0.6.0-rc2
4242
- name: STRIMZI_DEFAULT_TLS_SIDECAR_ZOOKEEPER_IMAGE
43-
value: strimzi/zookeeper-stunnel:0.6.0-rc1
43+
value: strimzi/zookeeper-stunnel:0.6.0-rc2
4444
- name: STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGE
45-
value: strimzi/kafka-stunnel:0.6.0-rc1
45+
value: strimzi/kafka-stunnel:0.6.0-rc2
4646
- name: STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGE
47-
value: strimzi/entity-operator-stunnel:0.6.0-rc1
47+
value: strimzi/entity-operator-stunnel:0.6.0-rc2
4848
- name: STRIMZI_LOG_LEVEL
4949
value: INFO
5050
livenessProbe:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
serviceAccountName: strimzi-topic-operator
1515
containers:
1616
- name: strimzi-topic-operator
17-
image: strimzi/topic-operator:0.6.0-rc1
17+
image: strimzi/topic-operator:0.6.0-rc2
1818
env:
1919
- name: STRIMZI_CONFIGMAP_LABELS
2020
value: "strimzi.io/kind=topic"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
serviceAccountName: strimzi-user-operator
1515
containers:
1616
- name: strimzi-user-operator
17-
image: strimzi/user-operator:0.6.0-rc1
17+
image: strimzi/user-operator:0.6.0-rc2
1818
env:
1919
- name: STRIMZI_NAMESPACE
2020
valueFrom:

helm-charts/strimzi-kafka-operator/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,38 +46,38 @@ the documentation for more details.
4646
| ------------------------------------ | ----------------------------------------- | ---------------------------------------------------- |
4747
| `image.repository` | Cluster Operator image repository | `strimzi` |
4848
| `image.name` | Cluster Operator image name | `cluster-operator` |
49-
| `image.tag` | Cluster Operator image tag | `0.6.0-rc1` |
49+
| `image.tag` | Cluster Operator image tag | `0.6.0-rc2` |
5050
| `image.imagePullPolicy` | Cluster Operator image pull policy | `IfNotPresent` |
5151
| `logLevel` | Cluster Operator log level | `INFO` |
5252
| `fullReconciliationIntervalMs` | Full reconciliation interval in milliseconds | 120000 |
5353
| `operationTimeoutMs` | Operation timeout in milliseconds | 300000 |
5454
| `zookeeper.image.repository` | ZooKeeper image repository | `strimzi` |
5555
| `zookeeper.image.name` | ZooKeeper image name | `zookeeper` |
56-
| `zookeeper.image.tag` | ZooKeeper image tag | `0.6.0-rc1` |
56+
| `zookeeper.image.tag` | ZooKeeper image tag | `0.6.0-rc2` |
5757
| `kafka.image.repository` | Kafka image repository | `strimzi` |
5858
| `kafka.image.name` | Kafka image name | `kafka` |
59-
| `kafka.image.tag` | Kafka image tag | `0.6.0-rc1` |
59+
| `kafka.image.tag` | Kafka image tag | `0.6.0-rc2` |
6060
| `kafkaConnect.image.repository` | Kafka Connect image repository | `strimzi` |
6161
| `kafkaConnect.image.name` | Kafka Connect image name | `kafka-connect` |
62-
| `kafkaConnect.image.tag` | Kafka Connect image tag | `0.6.0-rc1` |
62+
| `kafkaConnect.image.tag` | Kafka Connect image tag | `0.6.0-rc2` |
6363
| `kafkaConnects2i.image.repository` | Kafka Connect s2i image repository | `strimzi` |
6464
| `kafkaConnects2i.image.name` | Kafka Connect s2i image name | `kafka-connect-s2i` |
65-
| `kafkaConnects2i.image.tag` | Kafka Connect s2i image tag | `0.6.0-rc1` |
65+
| `kafkaConnects2i.image.tag` | Kafka Connect s2i image tag | `0.6.0-rc2` |
6666
| `topicOperator.image.repository` | Topic Operator image repository | `strimzi` |
6767
| `topicOperator.image.name` | Topic Operator s2i image name | `topic-operator` |
68-
| `topicOperator.image.tag` | Topic Operator s2i image tag | `0.6.0-rc1` |
68+
| `topicOperator.image.tag` | Topic Operator s2i image tag | `0.6.0-rc2` |
6969
| `kafkaInit.image.repository` | Init Kafka image repository | `strimzi` |
7070
| `kafkaInit.image.name` | Init Kafka image name | `kafka-init` |
71-
| `kafkaInit.image.tag` | Init Kafka image tag | `0.6.0-rc1` |
71+
| `kafkaInit.image.tag` | Init Kafka image tag | `0.6.0-rc2` |
7272
| `tlsSidecarZookeeper.image.repository` | TLS Sidecar for ZooKeeper image repository | `strimzi` |
7373
| `tlsSidecarZookeeper.image.name` | TLS Sidecar for ZooKeeper image name | `zookeeper-stunnel` |
74-
| `tlsSidecarZookeeper.image.tag` | TLS Sidecar for ZooKeeper image tag | `0.6.0-rc1` |
74+
| `tlsSidecarZookeeper.image.tag` | TLS Sidecar for ZooKeeper image tag | `0.6.0-rc2` |
7575
| `tlsSidecarKafka.image.repository` | TLS Sidecar for Kafka image repository | `strimzi` |
7676
| `tlsSidecarKafka.image.name` | TLS Sidecar for Kafka image name | `kafka-stunnel` |
77-
| `tlsSidecarKafka.image.tag` | TLS Sidecar for Kafka image tag | `0.6.0-rc1` |
77+
| `tlsSidecarKafka.image.tag` | TLS Sidecar for Kafka image tag | `0.6.0-rc2` |
7878
| `tlsSidecarTopicOperator.image.repository` | TLS Sidecar for Topic Operator image repository | `strimzi` |
7979
| `tlsSidecarTopicOperator.image.name` | TLS Sidecar for Topic Operator image name | `topic-operator-stunnel` |
80-
| `tlsSidecarTopicOperator.image.tag` | TLS Sidecar for Topic Operator image tag | `0.6.0-rc1` |
80+
| `tlsSidecarTopicOperator.image.tag` | TLS Sidecar for Topic Operator image tag | `0.6.0-rc2` |
8181
| `resources.limits.memory` | Memory constraint for limits | `256Mi` |
8282
| `resources.limits.cpu` | CPU constraint for limits | `1000m` |
8383
| `resources.requests.memory` | Memory constraint for requests | `256Mi` |

helm-charts/strimzi-kafka-operator/values.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
image:
44
repository: strimzi
55
name: cluster-operator
6-
tag: 0.6.0-rc1
6+
tag: 0.6.0-rc2
77
imagePullPolicy: IfNotPresent
88
logLevel: INFO
99
fullReconciliationIntervalMs: 120000
@@ -15,52 +15,52 @@ zookeeper:
1515
image:
1616
repository: strimzi
1717
name: zookeeper
18-
tag: 0.6.0-rc1
18+
tag: 0.6.0-rc2
1919
kafka:
2020
image:
2121
repository: strimzi
2222
name: kafka
23-
tag: 0.6.0-rc1
23+
tag: 0.6.0-rc2
2424
kafkaConnect:
2525
image:
2626
repository: strimzi
2727
name: kafka-connect
28-
tag: 0.6.0-rc1
28+
tag: 0.6.0-rc2
2929
kafkaConnects2i:
3030
image:
3131
repository: strimzi
3232
name: kafka-connect-s2i
33-
tag: 0.6.0-rc1
33+
tag: 0.6.0-rc2
3434
topicOperator:
3535
image:
3636
repository: strimzi
3737
name: topic-operator
38-
tag: 0.6.0-rc1
38+
tag: 0.6.0-rc2
3939
userOperator:
4040
image:
4141
repository: strimzi
4242
name: user-operator
43-
tag: 0.6.0-rc1
43+
tag: 0.6.0-rc2
4444
kafkaInit:
4545
image:
4646
repository: strimzi
4747
name: kafka-init
48-
tag: 0.6.0-rc1
48+
tag: 0.6.0-rc2
4949
tlsSidecarZookeeper:
5050
image:
5151
repository: strimzi
5252
name: zookeeper-stunnel
53-
tag: 0.6.0-rc1
53+
tag: 0.6.0-rc2
5454
tlsSidecarKafka:
5555
image:
5656
repository: strimzi
5757
name: kafka-stunnel
58-
tag: 0.6.0-rc1
58+
tag: 0.6.0-rc2
5959
tlsSidecarEntityOperator:
6060
image:
6161
repository: strimzi
6262
name: entity-operator-stunnel
63-
tag: 0.6.0-rc1
63+
tag: 0.6.0-rc2
6464
resources:
6565
limits:
6666
memory: 256Mi

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.6.0-RC1</version>
8+
<version>0.6.0-RC2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>kafka-init</artifactId>

operator-common/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.6.0-RC1</version>
7+
<version>0.6.0-RC2</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>operator-common</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.6.0-RC1</version>
8+
<version>0.6.0-RC2</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.6.0-RC1
1+
0.6.0-RC2

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.6.0-RC1</version>
8+
<version>0.6.0-RC2</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.6.0-RC1</version>
8+
<version>0.6.0-RC2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>topic-operator</artifactId>

user-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.6.0-RC1</version>
7+
<version>0.6.0-RC2</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>user-operator</artifactId>

0 commit comments

Comments
 (0)