Skip to content

Commit 3549638

Browse files
committed
release 23.11.0
1 parent 32a29b5 commit 3549638

File tree

9 files changed

+30
-27
lines changed

9 files changed

+30
-27
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+
## [23.11.0] - 2023-11-24
8+
79
### Added
810

911
- Use [graceful shutdown](https://trino.io/docs/current/admin/graceful-shutdown.html) for workers ([#461], [#463], [#466], [#474]).

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.

Cargo.toml

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

44
[workspace.package]
5-
version = "0.0.0-dev"
5+
version = "23.11.0"
66
authors = ["Stackable GmbH <info@stackable.tech>"]
77
license = "OSL-3.0"
88
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: "23.11.0"
5+
appVersion: "23.11.0"
66
description: The Stackable Operator for Trino
77
home: https://github.com/stackabletech/trino-operator
88
maintainers:

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: "23.11"
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
@@ -21,29 +21,29 @@ cd "$(dirname "$0")"
2121

2222
case "$1" in
2323
"helm")
24-
echo "Adding 'stackable-dev' Helm Chart repository"
24+
echo "Adding 'stackable-stable' Helm Chart repository"
2525
# tag::helm-add-repo[]
26-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
26+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2727
# end::helm-add-repo[]
2828
echo "Updating Helm repo"
2929
helm repo update
3030

3131
echo "Installing Operators with Helm"
3232
# tag::helm-install-operators[]
33-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
34-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
35-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
36-
helm install --wait trino-operator stackable-dev/trino-operator --version 0.0.0-dev
33+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.11.0
34+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.11.0
35+
helm install --wait listener-operator stackable-stable/listener-operator --version 23.11.0
36+
helm install --wait trino-operator stackable-stable/trino-operator --version 23.11.0
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-
trino=0.0.0-dev
43+
commons=23.11.0 \
44+
secret=23.11.0 \
45+
listener=23.11.0 \
46+
trino=23.11.0
4747
# end::stackablectl-install-operators[]
4848
;;
4949
*)
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.0.0-dev
3-
[INFO ] Installing secret operator in version 0.0.0-dev
4-
[INFO ] Installing listener operator in version 0.0.0-dev
5-
[INFO ] Installing trino operator in version 0.0.0-dev
2+
[INFO ] Installing commons operator in version 23.11.0
3+
[INFO ] Installing secret operator in version 23.11.0
4+
[INFO ] Installing listener operator in version 23.11.0
5+
[INFO ] Installing trino operator in version 23.11.0
66
# end::stackablectl-install-operators-output[]

docs/modules/trino/pages/usage-guide/catalogs/generic.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ An entry must be an valid `SecretKeySelector` or `ConfigMapKeySelector`.
5353

5454
== Add additional contents
5555

56-
In case you need more contents, such as the need to mount Secrets - containing e.g. certificates or keytabs - please consult the xref:nightly@home:concepts:overrides.adoc#_pod_overrides[documentation on podOverrides].
56+
In case you need more contents, such as the need to mount Secrets - containing e.g. certificates or keytabs - please consult the xref:home:concepts:overrides.adoc#_pod_overrides[documentation on podOverrides].

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: 23.11.0
7+
secret: 23.11.0
8+
listener: 23.11.0
9+
trino: 23.11.0

0 commit comments

Comments
 (0)