Skip to content

Commit

Permalink
release 23.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maltesander committed Nov 24, 2023
1 parent 32a29b5 commit 3549638
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 27 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [23.11.0] - 2023-11-24

### Added

- Use [graceful shutdown](https://trino.io/docs/current/admin/graceful-shutdown.html) for workers ([#461], [#463], [#466], [#474]).
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["rust/crd", "rust/operator-binary"]

[workspace.package]
version = "0.0.0-dev"
version = "23.11.0"
authors = ["Stackable GmbH <[email protected]>"]
license = "OSL-3.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/trino-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: trino-operator
version: "0.0.0-dev"
appVersion: "0.0.0-dev"
version: "23.11.0"
appVersion: "23.11.0"
description: The Stackable Operator for Trino
home: https://github.com/stackabletech/trino-operator
maintainers:
Expand Down
3 changes: 2 additions & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: home
version: "nightly"
version: "23.11"
prerelease: false
20 changes: 10 additions & 10 deletions docs/modules/trino/examples/getting_started/code/getting_started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,29 @@ cd "$(dirname "$0")"

case "$1" in
"helm")
echo "Adding 'stackable-dev' Helm Chart repository"
echo "Adding 'stackable-stable' Helm Chart repository"
# tag::helm-add-repo[]
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
# end::helm-add-repo[]
echo "Updating Helm repo"
helm repo update

echo "Installing Operators with Helm"
# tag::helm-install-operators[]
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
helm install --wait trino-operator stackable-dev/trino-operator --version 0.0.0-dev
helm install --wait commons-operator stackable-stable/commons-operator --version 23.11.0
helm install --wait secret-operator stackable-stable/secret-operator --version 23.11.0
helm install --wait listener-operator stackable-stable/listener-operator --version 23.11.0
helm install --wait trino-operator stackable-stable/trino-operator --version 23.11.0
# end::helm-install-operators[]
;;
"stackablectl")
echo "installing Operators with stackablectl"
# tag::stackablectl-install-operators[]
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
listener=0.0.0-dev \
trino=0.0.0-dev
commons=23.11.0 \
secret=23.11.0 \
listener=23.11.0 \
trino=23.11.0
# end::stackablectl-install-operators[]
;;
*)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tag::stackablectl-install-operators-output[]
[INFO ] Installing commons operator in version 0.0.0-dev
[INFO ] Installing secret operator in version 0.0.0-dev
[INFO ] Installing listener operator in version 0.0.0-dev
[INFO ] Installing trino operator in version 0.0.0-dev
[INFO ] Installing commons operator in version 23.11.0
[INFO ] Installing secret operator in version 23.11.0
[INFO ] Installing listener operator in version 23.11.0
[INFO ] Installing trino operator in version 23.11.0
# end::stackablectl-install-operators-output[]
2 changes: 1 addition & 1 deletion docs/modules/trino/pages/usage-guide/catalogs/generic.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ An entry must be an valid `SecretKeySelector` or `ConfigMapKeySelector`.

== Add additional contents

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].
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].
12 changes: 6 additions & 6 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
helm:
repo_name: stackable-dev
repo_url: https://repo.stackable.tech/repository/helm-dev/
repo_name: stackable-stable
repo_url: https://repo.stackable.tech/repository/helm-stable/
versions:
commons: 0.0.0-dev
secret: 0.0.0-dev
listener: 0.0.0-dev
trino: 0.0.0-dev
commons: 23.11.0
secret: 23.11.0
listener: 23.11.0
trino: 23.11.0

0 comments on commit 3549638

Please sign in to comment.