Skip to content

Commit af752fe

Browse files
authored
chore: Release 25.3.0 (#701)
Signed-off-by: Nick Larsen <[email protected]>
1 parent 544a9ba commit af752fe

File tree

11 files changed

+153
-150
lines changed

11 files changed

+153
-150
lines changed

Diff for: CHANGELOG.md

+2
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+
## [25.3.0] - 2025-03-21
8+
79
### Added
810

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

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.nix

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-1
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"

Diff for: deploy/helm/druid-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: druid-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 Druid
77
home: https://github.com/stackabletech/druid-operator
88
maintainers:

Diff for: deploy/helm/druid-operator/crds/crds.yaml

+109-109
Large diffs are not rendered by default.

Diff for: docs/antora.yml

+2-1
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

Diff for: docs/modules/druid/examples/getting_started/getting_started.sh

+14-14
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,32 @@ cd "$(dirname "$0")"
2424

2525
case "$1" in
2626
"helm")
27-
echo "Adding 'stackable-dev' Helm Chart repository"
27+
echo "Adding 'stackable-stable' Helm Chart repository"
2828
# tag::helm-add-repo[]
29-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
29+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
3030
# end::helm-add-repo[]
3131
echo "Updating Helm repo"
3232
helm repo update
3333
echo "Installing Operators with Helm"
3434
# tag::helm-install-operators[]
35-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
36-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
37-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
38-
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev
39-
helm install --wait hdfs-operator stackable-dev/hdfs-operator --version 0.0.0-dev
40-
helm install --wait druid-operator stackable-dev/druid-operator --version 0.0.0-dev
35+
helm install --wait commons-operator stackable-stable/commons-operator --version 25.3.0
36+
helm install --wait secret-operator stackable-stable/secret-operator --version 25.3.0
37+
helm install --wait listener-operator stackable-stable/listener-operator --version 25.3.0
38+
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 25.3.0
39+
helm install --wait hdfs-operator stackable-stable/hdfs-operator --version 25.3.0
40+
helm install --wait druid-operator stackable-stable/druid-operator --version 25.3.0
4141
# end::helm-install-operators[]
4242
;;
4343
"stackablectl")
4444
echo "installing Operators with stackablectl"
4545
# tag::stackablectl-install-operators[]
4646
stackablectl operator install \
47-
commons=0.0.0-dev \
48-
secret=0.0.0-dev \
49-
listener=0.0.0-dev \
50-
zookeeper=0.0.0-dev \
51-
hdfs=0.0.0-dev \
52-
druid=0.0.0-dev
47+
commons=25.3.0 \
48+
secret=25.3.0 \
49+
listener=25.3.0 \
50+
zookeeper=25.3.0 \
51+
hdfs=25.3.0 \
52+
druid=25.3.0
5353
# end::stackablectl-install-operators[]
5454
;;
5555
*)
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 druid=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 druid=25.3.0 operator

Diff for: docs/templating_vars.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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.0.0-dev
7-
secret: 0.0.0-dev
8-
listener: 0.0.0-dev
9-
zookeeper: 0.0.0-dev
10-
hdfs: 0.0.0-dev
11-
druid: 0.0.0-dev
6+
commons: 25.3.0
7+
secret: 25.3.0
8+
listener: 25.3.0
9+
zookeeper: 25.3.0
10+
hdfs: 25.3.0
11+
druid: 25.3.0
1212
postgresql: 16.5.0

Diff for: tests/release.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ releases:
77
description: Integration test
88
products:
99
commons:
10-
operatorVersion: 0.0.0-dev
10+
operatorVersion: 25.3.0
1111
secret:
12-
operatorVersion: 0.0.0-dev
12+
operatorVersion: 25.3.0
1313
listener:
14-
operatorVersion: 0.0.0-dev
14+
operatorVersion: 25.3.0
1515
zookeeper:
16-
operatorVersion: 0.0.0-dev
16+
operatorVersion: 25.3.0
1717
hdfs:
18-
operatorVersion: 0.0.0-dev
18+
operatorVersion: 25.3.0
1919
druid:
20-
operatorVersion: 0.0.0-dev
20+
operatorVersion: 25.3.0
2121
opa:
22-
operatorVersion: 0.0.0-dev
22+
operatorVersion: 25.3.0

0 commit comments

Comments
 (0)