Skip to content

Commit 208e95b

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/smooth-operator/remove-product-config
2 parents 3c4106f + b3787d4 commit 208e95b

24 files changed

Lines changed: 99 additions & 71 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

@@ -41,6 +42,7 @@ All notable changes to this project will be documented in this file.
4142
[#889]: https://github.com/stackabletech/trino-operator/pull/889
4243
[#895]: https://github.com/stackabletech/trino-operator/pull/895
4344
[#897]: https://github.com/stackabletech/trino-operator/pull/897
45+
[#900]: https://github.com/stackabletech/trino-operator/pull/900
4446

4547
## [26.3.0] - 2026-03-16
4648

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)