Skip to content

Commit c08229d

Browse files
committed
release 23.1.0
1 parent 51e6d79 commit c08229d

14 files changed

Lines changed: 50 additions & 48 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [23.1.0] - 2023-01-23
6+
57
### Added
68

79
- Log aggregation added ([#294]).

Cargo.lock

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

deploy/helm/hbase-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: hbase-operator
4-
version: "0.6.0-nightly"
5-
appVersion: "0.6.0-nightly"
4+
version: "23.1.0"
5+
appVersion: "23.1.0"
66
description: The Stackable Operator for Apache HBase
77
home: https://github.com/stackabletech/hbase-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: hbase
2-
version: "nightly"
2+
version: "23.1.0"
33
title: Stackable Operator for Apache HBase
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
@@ -154,7 +154,7 @@ The HBase Operator currently does not support any https://kubernetes.io/docs/con
154154
// The "nightly" version is needed because the "include" directive searches for
155155
// files in the "stable" version by default.
156156
// TODO: remove the "nightly" version after the next platform release (current: 22.09)
157-
include::nightly@home:concepts:stackable_resource_requests.adoc[]
157+
include::home:concepts:stackable_resource_requests.adoc[]
158158

159159
If no resources are configured explicitly, the HBase operator uses following defaults:
160160

docs/modules/getting_started/examples/code/getting_started.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@ fi
1414

1515
case "$1" in
1616
"helm")
17-
echo "Adding 'stackable-dev' Helm Chart repository"
17+
echo "Adding 'stackable-stable' Helm Chart repository"
1818
# tag::helm-add-repo[]
19-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
19+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2020
# end::helm-add-repo[]
2121
echo "Installing Operators with Helm"
2222
# tag::helm-install-operators[]
23-
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.13.0-nightly
24-
helm install --wait hdfs-operator stackable-dev/hdfs-operator --version 0.7.0-nightly
25-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.5.0-nightly
26-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.7.0-nightly
27-
helm install --wait hbase-operator stackable-dev/hbase-operator --version 0.6.0-nightly
23+
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 23.1.0
24+
helm install --wait hdfs-operator stackable-stable/hdfs-operator --version 23.1.0
25+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.1.0
26+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.1.0
27+
helm install --wait hbase-operator stackable-stable/hbase-operator --version 23.1.0
2828
# end::helm-install-operators[]
2929
;;
3030
"stackablectl")
3131
echo "installing Operators with stackablectl"
3232
# tag::stackablectl-install-operators[]
3333
stackablectl operator install \
34-
commons=0.5.0-nightly \
35-
secret=0.7.0-nightly \
36-
zookeeper=0.13.0-nightly \
37-
hdfs=0.7.0-nightly \
38-
hbase=0.6.0-nightly
34+
commons=23.1.0 \
35+
secret=23.1.0 \
36+
zookeeper=23.1.0 \
37+
hdfs=23.1.0 \
38+
hbase=23.1.0
3939
# end::stackablectl-install-operators[]
4040
;;
4141
*)

docs/modules/getting_started/examples/code/hbase.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: 2.4.12
9-
stackableVersion: 0.4.0
9+
stackableVersion: 23.1.0
1010
hdfsConfigMapName: simple-hdfs
1111
zookeeperConfigMapName: simple-znode
1212
config:

docs/modules/getting_started/examples/code/hdfs.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.4
9-
stackableVersion: 0.2.0
9+
stackableVersion: 23.1.0
1010
zookeeperConfigMapName: simple-znode
1111
dfsReplication: 3
1212
nameNodes:
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[INFO ] Installing commons operator in version 0.5.0-nightly
2-
[INFO ] Installing secret operator in version 0.7.0-nightly
3-
[INFO ] Installing zookeeper operator in version 0.13.0-nightly
4-
[INFO ] Installing hdfs operator 0.7.0-nightly
5-
[INFO ] Installing hbase operator 0.6.0-nightly
1+
[INFO ] Installing commons operator in version 23.1.0
2+
[INFO ] Installing secret operator in version 23.1.0
3+
[INFO ] Installing zookeeper operator in version 23.1.0
4+
[INFO ] Installing hdfs operator 23.1.0
5+
[INFO ] Installing hbase operator 23.1.0

docs/modules/getting_started/examples/code/zk.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.8.0
9+
stackableVersion: 23.1.0
1010
servers:
1111
roleGroups:
1212
default:

0 commit comments

Comments
 (0)