Skip to content

Commit 3158402

Browse files
authored
feat: Add support for Trino 481 (#900)
* feat: Add support for Trino 481 * Bump docs and examples * changelog * Hopefully fix kuttl test * Remove leftover 479 version
1 parent 1c493b3 commit 3158402

24 files changed

Lines changed: 104 additions & 76 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
99
- BREAKING: Add required CLI argument and env var to set the image repository used to construct final product image names: `IMAGE_REPOSITORY` (`--image-repository`), eg. `oci.example.org/my/namespace` ([#884]).
1010
- Added support for the [PostgreSQL connector](https://trino.io/docs/current/connector/postgresql.html) using the new generic database connection mechanism.
1111
Previously, users had to use the `generic` connector ([#883]).
12+
- Added support for Trino 481 ([#900]).
1213

1314
### Changed
1415

@@ -38,6 +39,7 @@ All notable changes to this project will be documented in this file.
3839
[#884]: https://github.com/stackabletech/trino-operator/pull/884
3940
[#889]: https://github.com/stackabletech/trino-operator/pull/889
4041
[#895]: https://github.com/stackabletech/trino-operator/pull/895
42+
[#900]: https://github.com/stackabletech/trino-operator/pull/900
4143

4244
## [26.3.0] - 2026-03-16
4345

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ sleep 5
8888
echo "Start testing Trino"
8989
echo "Downloading Trino CLI tool as trino.jar"
9090
# tag::download-trino-cli[]
91-
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-479
91+
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-481
9292
# end::download-trino-cli[]
9393

9494
echo "Run chmod +x for trino.jar"

docs/modules/trino/examples/getting_started/code/getting_started.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ sleep 5
8888
echo "Start testing Trino"
8989
echo "Downloading Trino CLI tool as trino.jar"
9090
# tag::download-trino-cli[]
91-
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-479
91+
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-481
9292
# end::download-trino-cli[]
9393

9494
echo "Run chmod +x for trino.jar"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "479"
8+
productVersion: "481"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "479"
8+
productVersion: "481"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/usage-guide/fault-tolerant-execution.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: trino-fault-tolerant
66
spec:
77
image:
8-
productVersion: "479"
8+
productVersion: "481"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/usage-guide/trino-insecure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "479"
20+
productVersion: "481"
2121
clusterConfig:
2222
catalogLabelSelector:
2323
matchLabels:

docs/modules/trino/examples/usage-guide/trino-secure-internal-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "479"
20+
productVersion: "481"
2121
clusterConfig:
2222
tls:
2323
internalSecretClass: trino-internal-tls # <1>

docs/modules/trino/examples/usage-guide/trino-secure-tls-only.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "479"
20+
productVersion: "481"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

docs/modules/trino/examples/usage-guide/trino-secure-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "479"
20+
productVersion: "481"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

0 commit comments

Comments
 (0)