Skip to content

Commit ad81648

Browse files
committed
release 23.1.0
1 parent bd94866 commit ad81648

12 files changed

Lines changed: 39 additions & 37 deletions

File tree

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.1.0] - 2023-01-23
8+
79
### Added
810

911
- Add support for [Google Sheets connector](https://trino.io/docs/current/connector/googlesheets.html) ([#337]).

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.

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.9.0-nightly"
5-
appVersion: "0.9.0-nightly"
4+
version: "23.1.0"
5+
appVersion: "23.1.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: trino
2-
version: "nightly"
2+
version: "23.1.0"
33
title: Stackable Operator for Trino
44
nav:
55
- modules/getting_started/nav.adoc
66
- modules/ROOT/nav.adoc
77
- modules/usage_guide/nav.adoc
8-
prerelease: true
8+
prerelease: false

docs/modules/getting_started/examples/code/getting-started.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ fi
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 "Installing Operators with Helm"
2727
# tag::helm-install-operators[]
28-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.5.0-nightly
29-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.7.0-nightly
30-
helm install --wait trino-operator stackable-dev/trino-operator --version 0.9.0-nightly
28+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.1.0
29+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.1.0
30+
helm install --wait trino-operator stackable-stable/trino-operator --version 23.1.0
3131
# end::helm-install-operators[]
3232
;;
3333
"stackablectl")
3434
echo "installing Operators with stackablectl"
3535
# tag::stackablectl-install-operators[]
3636
stackablectl operator install \
37-
commons=0.5.0-nightly \
38-
secret=0.7.0-nightly \
39-
trino=0.9.0-nightly
37+
commons=23.1.0 \
38+
secret=23.1.0 \
39+
trino=23.1.0
4040
# end::stackablectl-install-operators[]
4141
;;
4242
*)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# tag::stackablectl-install-operators-output[]
2-
[INFO ] Installing commons operator in version 0.5.0-nightly
3-
[INFO ] Installing secret operator in version 0.7.0-nightly
4-
[INFO ] Installing trino operator in version 0.9.0-nightly
2+
[INFO ] Installing commons operator in version 23.1.0
3+
[INFO ] Installing secret operator in version 23.1.0
4+
[INFO ] Installing trino operator in version 23.1.0
55
# end::stackablectl-install-operators-output[]

docs/modules/getting_started/examples/code/trino.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77
image:
88
productVersion: "396"
9-
stackableVersion: 0.3.0
9+
stackableVersion: 23.1.0
1010
catalogLabelSelector:
1111
matchLabels:
1212
trino: simple-trino

docs/modules/usage_guide/pages/configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ By default, in case nothing is configured in the custom resource for a certain r
107107
// The "nightly" version is needed because the "include" directive searches for
108108
// files in the "stable" version by default.
109109
// TODO: remove the "nightly" version after the next platform release (current: 22.09)
110-
include::nightly@home:concepts:stackable_resource_requests.adoc[]
110+
include::home:concepts:stackable_resource_requests.adoc[]
111111

112112
If no resource requests are configured explicitly, the Trino operator uses the following defaults:
113113

docs/templating_vars.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.5.0-nightly
7-
secret: 0.7.0-nightly
8-
trino: 0.9.0-nightly
6+
commons: 23.1.0
7+
secret: 23.1.0
8+
trino: 23.1.0

rust/crd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "OSL-3.0"
66
name = "stackable-trino-crd"
77
repository = "https://github.com/stackabletech/trino-operator"
8-
version = "0.9.0-nightly"
8+
version = "23.1.0"
99
publish = false
1010

1111
[dependencies]

0 commit comments

Comments
 (0)