Skip to content

Commit

Permalink
Prepare for 0.26.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Scholz <[email protected]>
  • Loading branch information
scholzj committed Oct 15, 2021
1 parent 8a56f27 commit 8d4b028
Show file tree
Hide file tree
Showing 36 changed files with 88 additions and 88 deletions.
6 changes: 3 additions & 3 deletions .checksums
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
# 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="69226e4731bafcf6c8de6da9c15dc45dcc0cee95 -"
HELM_CHART_CHECKSUM="4d0330a8ea4fe55d2afb3207afcad251c04b29e4 -"

### 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="b7b9a14e1efebfa283a631d5092f4982652dfccd -"
INSTALL_CHECKSUM="9cbc83ca420b34e5f5fdfe2780524b87d40e0b27 -"

### IMPORTANT ###
# if the below line has changed, this means the ./examples directory has changed
# the checksum and ./examples 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/examples
### IMPORTANT ###
EXAMPLES_CHECKSUM="ab72f6951d133a37d5f9e72fb3d01cea03ed108c -"
EXAMPLES_CHECKSUM="f0c41063b4e67d06bdd45d0a9e90c9b416cc1b30 -"
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.strimzi</groupId>
<artifactId>strimzi</artifactId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion certificate-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>certificate-manager</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cluster-operator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.strimzi</groupId>
<artifactId>strimzi</artifactId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cluster-operator</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion config-model-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion config-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion crd-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion crd-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>crd-generator</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions examples/metrics/prometheus-install/prometheus-rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ spec:
- name: kafka
rules:
- alert: KafkaRunningOutOfSpace
expr: kubelet_volume_stats_available_bytes{persistentvolumeclaim=~"data-([0-9]+)?-(.+)-kafka-[0-9]+"} < 5368709120
expr: kubelet_volume_stats_available_bytes{persistentvolumeclaim=~"data(-[0-9]+)?-(.+)-kafka-[0-9]+"} * 100 / kubelet_volume_stats_capacity_bytes{persistentvolumeclaim=~"data(-[0-9]+)?-(.+)-kafka-[0-9]+"} < 15
for: 10s
labels:
severity: warning
annotations:
summary: 'Kafka is running out of free disk space'
description: 'There are only {{ $value }} bytes available at {{ $labels.persistentvolumeclaim }} PVC'
description: 'There are only {{ $value }} percent available at {{ $labels.persistentvolumeclaim }} PVC'
- alert: UnderReplicatedPartitions
expr: kafka_server_replicamanager_underreplicatedpartitions > 0
for: 10s
Expand Down
4 changes: 2 additions & 2 deletions examples/security/keycloak-authorization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ This folder contains an example `Kafka` custom resource configured for OAuth 2.0
- the corresponding `oauth` authentication
The folder also contains a Keycloak realm export to import into your Keycloak instance to support the example.

Full instructions for the example are available in the [Strimzi Documentation](https://strimzi.io/docs/operators/0.26.0-rc1/using.html#con-oauth-authorization-keycloak-example).
Full instructions for the example are available in the [Strimzi Documentation](https://strimzi.io/docs/operators/0.26.0/using.html#con-oauth-authorization-keycloak-example).

* [kafka-authz-realm.json](./kafka-authz-realm.json)
* The Keycloak realm export file
* [kafka-ephemeral-oauth-single-keycloak-authz.yaml](./kafka-ephemeral-oauth-single-keycloak-authz.yaml)
* The Kafka CR that defines a single-node Kafka cluster with `oauth` authentication and `keycloak` authorization,
using the `kafka-authz` realm. See [full example instructions](https://strimzi.io/docs/operators/0.26.0-rc1/using.html#con-oauth-authorization-keycloak-example) for proper preparation and deployment.
using the `kafka-authz` realm. See [full example instructions](https://strimzi.io/docs/operators/0.26.0/using.html#con-oauth-authorization-keycloak-example) for proper preparation and deployment.
2 changes: 1 addition & 1 deletion helm-charts/helm3/strimzi-kafka-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ the documentation for more details.
| `watchAnyNamespace` | Watch the whole Kubernetes cluster (all namespaces) | `false` |
| `defaultImageRegistry` | Default image registry for all the images | `quay.io` |
| `defaultImageRepository` | Default image registry for all the images | `strimzi` |
| `defaultImageTag` | Default image tag for all the images except Kafka Bridge | `0.26.0-rc1` |
| `defaultImageTag` | Default image tag for all the images except Kafka Bridge | `0.26.0` |
| `image.registry` | Override default Cluster Operator image registry | `nil` |
| `image.repository` | Override default Cluster Operator image repository | `nil` |
| `image.name` | Cluster Operator image name | `cluster-operator` |
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/helm3/strimzi-kafka-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ watchAnyNamespace: false

defaultImageRegistry: quay.io
defaultImageRepository: strimzi
defaultImageTag: 0.26.0-rc1
defaultImageTag: 0.26.0

image:
registry: ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
name: strimzi-cluster-operator
containers:
- name: strimzi-cluster-operator
image: quay.io/strimzi/operator:0.26.0-rc1
image: quay.io/strimzi/operator:0.26.0
ports:
- containerPort: 8080
name: http
Expand All @@ -48,47 +48,47 @@ spec:
- name: STRIMZI_OPERATION_TIMEOUT_MS
value: "300000"
- name: STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGE
value: quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
value: quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_DEFAULT_KAFKA_EXPORTER_IMAGE
value: quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
value: quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_DEFAULT_CRUISE_CONTROL_IMAGE
value: quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
value: quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_DEFAULT_TLS_SIDECAR_CRUISE_CONTROL_IMAGE
value: quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
value: quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_KAFKA_IMAGES
value: |
2.8.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
2.8.0=quay.io/strimzi/kafka:0.26.0-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_KAFKA_CONNECT_IMAGES
value: |
2.8.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
2.8.0=quay.io/strimzi/kafka:0.26.0-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_KAFKA_MIRROR_MAKER_IMAGES
value: |
2.8.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
2.8.0=quay.io/strimzi/kafka:0.26.0-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_KAFKA_MIRROR_MAKER_2_IMAGES
value: |
2.8.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-rc1-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-rc1-kafka-3.0.0
2.8.0=quay.io/strimzi/kafka:0.26.0-kafka-2.8.0
2.8.1=quay.io/strimzi/kafka:0.26.0-kafka-2.8.1
3.0.0=quay.io/strimzi/kafka:0.26.0-kafka-3.0.0
- name: STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE
value: quay.io/strimzi/operator:0.26.0-rc1
value: quay.io/strimzi/operator:0.26.0
- name: STRIMZI_DEFAULT_USER_OPERATOR_IMAGE
value: quay.io/strimzi/operator:0.26.0-rc1
value: quay.io/strimzi/operator:0.26.0
- name: STRIMZI_DEFAULT_KAFKA_INIT_IMAGE
value: quay.io/strimzi/operator:0.26.0-rc1
value: quay.io/strimzi/operator:0.26.0
- name: STRIMZI_DEFAULT_KAFKA_BRIDGE_IMAGE
value: quay.io/strimzi/kafka-bridge:0.20.3
- name: STRIMZI_DEFAULT_JMXTRANS_IMAGE
value: quay.io/strimzi/jmxtrans:0.26.0-rc1
value: quay.io/strimzi/jmxtrans:0.26.0
- name: STRIMZI_DEFAULT_KANIKO_EXECUTOR_IMAGE
value: quay.io/strimzi/kaniko-executor:0.26.0-rc1
value: quay.io/strimzi/kaniko-executor:0.26.0
- name: STRIMZI_DEFAULT_MAVEN_BUILDER
value: quay.io/strimzi/maven-builder:0.26.0-rc1
value: quay.io/strimzi/maven-builder:0.26.0
- name: STRIMZI_OPERATOR_NAMESPACE
valueFrom:
fieldRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: strimzi-topic-operator
containers:
- name: strimzi-topic-operator
image: quay.io/strimzi/operator:0.26.0-rc1
image: quay.io/strimzi/operator:0.26.0
args:
- /opt/strimzi/bin/topic_operator_run.sh
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: strimzi-user-operator
containers:
- name: strimzi-user-operator
image: quay.io/strimzi/operator:0.26.0-rc1
image: quay.io/strimzi/operator:0.26.0
args:
- /opt/strimzi/bin/user_operator_run.sh
env:
Expand Down
2 changes: 1 addition & 1 deletion kafka-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion kafka-init/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>kafka-init</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mirror-maker-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion mockkube/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>strimzi</artifactId>
<groupId>io.strimzi</groupId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion operator-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.strimzi</groupId>
<artifactId>strimzi</artifactId>
<version>0.26.0-RC1</version>
<version>0.26.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>operator-common</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions packaging/examples/security/keycloak-authorization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ This folder contains an example `Kafka` custom resource configured for OAuth 2.0
- the corresponding `oauth` authentication
The folder also contains a Keycloak realm export to import into your Keycloak instance to support the example.

Full instructions for the example are available in the [Strimzi Documentation](https://strimzi.io/docs/operators/0.26.0-rc1/using.html#con-oauth-authorization-keycloak-example).
Full instructions for the example are available in the [Strimzi Documentation](https://strimzi.io/docs/operators/0.26.0/using.html#con-oauth-authorization-keycloak-example).

* [kafka-authz-realm.json](./kafka-authz-realm.json)
* The Keycloak realm export file
* [kafka-ephemeral-oauth-single-keycloak-authz.yaml](./kafka-ephemeral-oauth-single-keycloak-authz.yaml)
* The Kafka CR that defines a single-node Kafka cluster with `oauth` authentication and `keycloak` authorization,
using the `kafka-authz` realm. See [full example instructions](https://strimzi.io/docs/operators/0.26.0-rc1/using.html#con-oauth-authorization-keycloak-example) for proper preparation and deployment.
using the `kafka-authz` realm. See [full example instructions](https://strimzi.io/docs/operators/0.26.0/using.html#con-oauth-authorization-keycloak-example) for proper preparation and deployment.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ the documentation for more details.
| `watchAnyNamespace` | Watch the whole Kubernetes cluster (all namespaces) | `false` |
| `defaultImageRegistry` | Default image registry for all the images | `quay.io` |
| `defaultImageRepository` | Default image registry for all the images | `strimzi` |
| `defaultImageTag` | Default image tag for all the images except Kafka Bridge | `0.26.0-rc1` |
| `defaultImageTag` | Default image tag for all the images except Kafka Bridge | `0.26.0` |
| `image.registry` | Override default Cluster Operator image registry | `nil` |
| `image.repository` | Override default Cluster Operator image repository | `nil` |
| `image.name` | Cluster Operator image name | `cluster-operator` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ watchAnyNamespace: false

defaultImageRegistry: quay.io
defaultImageRepository: strimzi
defaultImageTag: 0.26.0-rc1
defaultImageTag: 0.26.0

image:
registry: ""
Expand Down
12 changes: 6 additions & 6 deletions packaging/helm-charts/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ apiVersion: v1
entries:
strimzi-kafka-operator:
- apiVersion: v2
appVersion: 0.26.0-rc1
created: "2021-10-13T00:02:02.331794+02:00"
appVersion: 0.26.0
created: "2021-10-15T10:49:32.863211+02:00"
description: 'Strimzi: Apache Kafka running on Kubernetes'
digest: a914ae0ee94e978d8acb03a8ae832dc51376e97ba044403f67e77c4a333b2562
digest: fb06c392d162015bc46dafaf5cc601d7a1a28d032d4137ba232ea319e457d128
home: https://strimzi.io/
icon: https://raw.githubusercontent.com/strimzi/strimzi-kafka-operator/main/documentation/logo/strimzi_logo.png
keywords:
Expand All @@ -27,8 +27,8 @@ entries:
sources:
- https://github.com/strimzi/strimzi-kafka-operator
urls:
- https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.26.0-rc1/strimzi-kafka-operator-helm-3-chart-0.26.0-rc1.tgz
version: 0.26.0-rc1
- https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.26.0/strimzi-kafka-operator-helm-3-chart-0.26.0.tgz
version: 0.26.0
- apiVersion: v2
appVersion: 0.25.0
created: "2021-08-10T21:40:52.296068+02:00"
Expand Down Expand Up @@ -881,4 +881,4 @@ entries:
urls:
- https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.6.0/strimzi-kafka-operator-0.6.0.tgz
version: 0.6.0
generated: "2021-10-13T00:02:02.32585+02:00"
generated: "2021-10-15T10:49:32.857175+02:00"
Loading

0 comments on commit 8d4b028

Please sign in to comment.