Skip to content

Commit 6e8ff24

Browse files
committed
chore: Release 25.3.0
Signed-off-by: Nick Larsen <[email protected]>
1 parent de4d6c7 commit 6e8ff24

File tree

13 files changed

+95
-92
lines changed

13 files changed

+95
-92
lines changed

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+
## [25.3.0] - 2025-03-21
6+
57
### Added
68

79
- The lifetime of auto generated TLS certificates is now configurable with the role and roleGroup

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["rust/operator-binary"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.0.0-dev"
6+
version = "25.3.0"
77
authors = ["Stackable GmbH <[email protected]>"]
88
license = "OSL-3.0"
99
edition = "2021"

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.0.0-dev"
5-
appVersion: "0.0.0-dev"
4+
version: "25.3.0"
5+
appVersion: "25.3.0"
66
description: The Stackable Operator for Apache HBase
77
home: https://github.com/stackabletech/hbase-operator
88
maintainers:

deploy/helm/hbase-operator/crds/crds.yaml

Lines changed: 49 additions & 49 deletions
Large diffs are not rendered by default.

docs/antora.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
---
22
name: home
3-
version: "nightly"
3+
version: "25.3"
4+
prerelease: false

docs/modules/hbase/examples/getting_started/getting_started.sh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,33 @@ cd "$(dirname "$0")"
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 "Updating Helm repo"
2727
helm repo update
2828
echo "Installing Operators with Helm"
2929
# tag::helm-install-operators[]
30-
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev &
31-
helm install --wait hdfs-operator stackable-dev/hdfs-operator --version 0.0.0-dev &
32-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev &
33-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev &
34-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev &
35-
helm install --wait hbase-operator stackable-dev/hbase-operator --version 0.0.0-dev &
30+
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 25.3.0 &
31+
helm install --wait hdfs-operator stackable-stable/hdfs-operator --version 25.3.0 &
32+
helm install --wait commons-operator stackable-stable/commons-operator --version 25.3.0 &
33+
helm install --wait secret-operator stackable-stable/secret-operator --version 25.3.0 &
34+
helm install --wait listener-operator stackable-stable/listener-operator --version 25.3.0 &
35+
helm install --wait hbase-operator stackable-stable/hbase-operator --version 25.3.0 &
3636
wait
3737
# end::helm-install-operators[]
3838
;;
3939
"stackablectl")
4040
echo "installing Operators with stackablectl"
4141
# tag::stackablectl-install-operators[]
4242
stackablectl operator install \
43-
commons=0.0.0-dev \
44-
secret=0.0.0-dev \
45-
listener=0.0.0-dev \
46-
zookeeper=0.0.0-dev \
47-
hdfs=0.0.0-dev \
48-
hbase=0.0.0-dev
43+
commons=25.3.0 \
44+
secret=25.3.0 \
45+
listener=25.3.0 \
46+
zookeeper=25.3.0 \
47+
hdfs=25.3.0 \
48+
hbase=25.3.0
4949
# end::stackablectl-install-operators[]
5050
;;
5151
*)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Installed commons=0.0.0-dev operator
2-
Installed secret=0.0.0-dev operator
3-
Installed listener=0.0.0-dev operator
4-
Installed zookeeper=0.0.0-dev operator
5-
Installed hdfs=0.0.0-dev operator
6-
Installed hbase=0.0.0-dev operator
1+
Installed commons=25.3.0 operator
2+
Installed secret=25.3.0 operator
3+
Installed listener=25.3.0 operator
4+
Installed zookeeper=25.3.0 operator
5+
Installed hdfs=25.3.0 operator
6+
Installed hbase=25.3.0 operator

docs/modules/hbase/examples/usage-guide/hbck2-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbck2
11-
image: oci.stackable.tech/sdp/hbase:2.6.1-stackable0.0.0-dev
11+
image: oci.stackable.tech/sdp/hbase:2.6.1-stackable25.3.0
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf

0 commit comments

Comments
 (0)