Skip to content

Commit 4c511cb

Browse files
committed
release 23.1.0
1 parent 068652a commit 4c511cb

14 files changed

Lines changed: 48 additions & 46 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [23.1.0] - 2023-01-23
8+
79
### Changed
810

911
- Fixed the RoleGroup `selector`. It was not used before. ([#530])

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/kafka-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: kafka-operator
4-
version: "0.9.0-nightly"
5-
appVersion: "0.9.0-nightly"
4+
version: "23.1.0"
5+
appVersion: "23.1.0"
66
description: The Stackable Operator for Apache Kafka
77
home: https://github.com/stackabletech/kafka-operator
88
maintainers:

docs/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: kafka
2-
version: "nightly"
2+
version: "23.1.0"
33
title: Stackable Operator for Apache Kafka
44
nav:
55
- modules/getting_started/nav.adoc
66
- modules/ROOT/nav.adoc
7-
prerelease: true
7+
prerelease: false

docs/modules/ROOT/pages/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ By default, in case nothing is configured in the custom resource for a certain r
319319
// The "nightly" version is needed because the "include" directive searches for
320320
// files in the "stable" version by default.
321321
// TODO: remove the "nightly" version after the next platform release (current: 22.09)
322-
include::nightly@home:concepts:stackable_resource_requests.adoc[]
322+
include::home:concepts:stackable_resource_requests.adoc[]
323323

324324
If no resource requests are configured explicitly, the Kafka operator uses the following defaults:
325325

docs/modules/getting_started/examples/code/getting-started.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,26 @@ fi
1919

2020
case "$1" in
2121
"helm")
22-
echo "Adding 'stackable-dev' Helm Chart repository"
22+
echo "Adding 'stackable-stable' Helm Chart repository"
2323
# tag::helm-add-repo[]
24-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
24+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2525
# end::helm-add-repo[]
2626
echo "Installing Operators with Helm"
2727
# tag::helm-install-operators[]
28-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.5.0-nightly
29-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.6.0-nightly
30-
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.13.0-nightly
31-
helm install --wait kafka-operator stackable-dev/kafka-operator --version 0.9.0-nightly
28+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.1.0
29+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.1.0
30+
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 23.1.0
31+
helm install --wait kafka-operator stackable-stable/kafka-operator --version 23.1.0
3232
# end::helm-install-operators[]
3333
;;
3434
"stackablectl")
3535
echo "installing Operators with stackablectl"
3636
# tag::stackablectl-install-operators[]
3737
stackablectl operator install \
38-
commons=0.5.0-nightly \
39-
secret=0.6.0-nightly \
40-
zookeeper=0.13.0-nightly \
41-
kafka=0.9.0-nightly
38+
commons=23.1.0 \
39+
secret=23.1.0 \
40+
zookeeper=23.1.0 \
41+
kafka=23.1.0
4242
# end::stackablectl-install-operators[]
4343
;;
4444
*)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tag::stackablectl-install-operators-output[]
2-
[INFO ] Installing commons operator in version 0.5.0-nightly
3-
[INFO ] Installing secret operator in version 0.6.0-nightly
4-
[INFO ] Installing zookeeper operator in version 0.13.0-nightly
5-
[INFO ] Installing kafka operator in version 0.9.0-nightly
2+
[INFO ] Installing commons operator in version 23.1.0
3+
[INFO ] Installing secret operator in version 23.1.0
4+
[INFO ] Installing zookeeper operator in version 23.1.0
5+
[INFO ] Installing kafka operator in version 23.1.0
66
# end::stackablectl-install-operators-output[]

docs/modules/getting_started/examples/code/kafka.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77
image:
88
productVersion: 3.3.1
9-
stackableVersion: 0.3.0
9+
stackableVersion: 23.1.0
1010
clusterConfig:
1111
tls:
1212
serverSecretClass: null

docs/modules/getting_started/examples/code/zookeeper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77
image:
88
productVersion: 3.8.0
9-
stackableVersion: 0.9.0
9+
stackableVersion: 23.1.0
1010
servers:
1111
roleGroups:
1212
default:

docs/templating_vars.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
helm:
3-
repo_name: stackable-dev
4-
repo_url: https://repo.stackable.tech/repository/helm-dev/
3+
repo_name: stackable-stable
4+
repo_url: https://repo.stackable.tech/repository/helm-stable/
55
versions:
6-
commons: 0.5.0-nightly
7-
secret: 0.6.0-nightly
8-
zookeeper: 0.13.0-nightly
9-
kafka: 0.9.0-nightly
6+
commons: 23.1.0
7+
secret: 23.1.0
8+
zookeeper: 23.1.0
9+
kafka: 23.1.0

0 commit comments

Comments
 (0)