Skip to content

Commit 6765039

Browse files
authored
chore: Release 25.3.0 (#723)
Signed-off-by: Nick Larsen <nick.larsen@stackable.tech>
1 parent ea37ab2 commit 6765039

File tree

11 files changed

+107
-104
lines changed

11 files changed

+107
-104
lines changed

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+
## [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

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 <info@stackable.tech>"]
88
license = "OSL-3.0"
99
edition = "2021"

deploy/helm/trino-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: trino-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 Trino
77
home: https://github.com/stackabletech/trino-operator
88
maintainers:

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

Lines changed: 70 additions & 70 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/trino/examples/getting_started/code/getting_started.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@ 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

3434
echo "Installing Operators with Helm"
3535
# tag::helm-install-operators[]
36-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
37-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
38-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
39-
helm install --wait trino-operator stackable-dev/trino-operator --version 0.0.0-dev
36+
helm install --wait commons-operator stackable-stable/commons-operator --version 25.3.0
37+
helm install --wait secret-operator stackable-stable/secret-operator --version 25.3.0
38+
helm install --wait listener-operator stackable-stable/listener-operator --version 25.3.0
39+
helm install --wait trino-operator stackable-stable/trino-operator --version 25.3.0
4040
# end::helm-install-operators[]
4141
;;
4242
"stackablectl")
4343
echo "installing Operators with stackablectl"
4444
# tag::stackablectl-install-operators[]
4545
stackablectl operator install \
46-
commons=0.0.0-dev \
47-
secret=0.0.0-dev \
48-
listener=0.0.0-dev \
49-
trino=0.0.0-dev
46+
commons=25.3.0 \
47+
secret=25.3.0 \
48+
listener=25.3.0 \
49+
trino=25.3.0
5050
# end::stackablectl-install-operators[]
5151
;;
5252
*)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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 trino=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 trino=25.3.0 operator

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.0.0-dev
7-
secret: 0.0.0-dev
8-
listener: 0.0.0-dev
9-
trino: 0.0.0-dev
6+
commons: 25.3.0
7+
secret: 25.3.0
8+
listener: 25.3.0
9+
trino: 25.3.0

tests/release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ 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
hive:
20-
operatorVersion: 0.0.0-dev
20+
operatorVersion: 25.3.0
2121
opa:
22-
operatorVersion: 0.0.0-dev
22+
operatorVersion: 25.3.0
2323
trino:
24-
operatorVersion: 0.0.0-dev
24+
operatorVersion: 25.3.0

0 commit comments

Comments
 (0)