Skip to content

Commit 7bd3408

Browse files
authored
Replace Trino 438 with 439 (#539)
* replace 438 with 439 * adapted changelog
1 parent cb4b8f2 commit 7bd3408

21 files changed

+35
-35
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file.
99
- Various documentation of the CRD ([#510]).
1010
- Helm: support labels in values.yaml ([#528]).
1111
- Delta Lake connector ([#531]).
12-
- Support for version `438` ([#536]).
12+
- Support for version `439` ([#539]).
1313

1414
### Fixed
1515

@@ -19,7 +19,7 @@ All notable changes to this project will be documented in this file.
1919
[#526]: https://github.com/stackabletech/trino-operator/pull/526
2020
[#528]: https://github.com/stackabletech/trino-operator/pull/528
2121
[#531]: https://github.com/stackabletech/trino-operator/pull/531
22-
[#536]: https://github.com/stackabletech/trino-operator/pull/536
22+
[#539]: https://github.com/stackabletech/trino-operator/pull/539
2323

2424
## [23.11.0] - 2023-11-24
2525

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "438"
8+
productVersion: "439"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "438"
8+
productVersion: "439"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "438"
20+
productVersion: "439"
2121
clusterConfig:
2222
catalogLabelSelector:
2323
matchLabels:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "438"
20+
productVersion: "439"
2121
clusterConfig:
2222
tls:
2323
internalSecretClass: trino-internal-tls # <1>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "438"
20+
productVersion: "439"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "438"
20+
productVersion: "439"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ metadata:
7272
name: simple-trino
7373
spec:
7474
image:
75-
productVersion: "438"
75+
productVersion: "439"
7676
clusterConfig:
7777
catalogLabelSelector:
7878
matchLabels:

docs/modules/trino/pages/usage-guide/operations/graceful-shutdown.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The coordinator process will receive a `SIGTERM` signal when Kubernetes wants to
1010
After the graceful shutdown timeout runs out, and the process still didn't exit, Kubernetes will issue a `SIGKILL` signal.
1111

1212
When a coordinator gets restarted, all currently running queries will fail and cannot be recovered after the restart process is finished.
13-
As of Trino version `438` this can not be prevented (e.g. by using multiple coordinators).
13+
As of Trino version `439` this can not be prevented (e.g. by using multiple coordinators).
1414

1515
== Workers
1616

docs/modules/trino/pages/usage-guide/security.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ include::example$usage-guide/opa-bundle-trino-cm-414.yaml[]
9191
include::example$usage-guide/opa-bundle-trino-cm-428.yaml[]
9292
----
9393

94-
=== Rego for Trino version 438
94+
=== Rego for Trino version 439
9595

9696
[source,yaml]
9797
----
98-
include::example$usage-guide/opa-bundle-trino-cm-438.yaml[]
98+
include::example$usage-guide/opa-bundle-trino-cm-439.yaml[]
9999
----
100100

101101
Reference the package in the Trino cluster:

docs/modules/trino/partials/supported-versions.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
// This is a separate file, since it is used by both the direct Trino documentation, and the overarching
33
// Stackable Platform documentation.
44

5-
- 438
5+
- 439
66
- 428 (deprecated)
77
- 414 (LTS)

examples/simple-trino-cluster-authentication-opa-authorization-s3.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "438"
8+
productVersion: "439"
99
clusterConfig:
1010
authentication:
1111
- authenticationClass: simple-trino-users

examples/simple-trino-cluster-hive-ha-s3.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
name: simple-trino
1010
spec:
1111
image:
12-
productVersion: "438"
12+
productVersion: "439"
1313
clusterConfig:
1414
catalogLabelSelector:
1515
matchLabels:

examples/simple-trino-cluster-resource-limits.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "438"
8+
productVersion: "439"
99
clusterConfig:
1010
catalogLabelSelector: {}
1111
coordinators:

examples/simple-trino-cluster-s3.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: simple-trino
88
spec:
99
image:
10-
productVersion: "438"
10+
productVersion: "439"
1111
clusterConfig:
1212
catalogLabelSelector:
1313
matchLabels:

examples/simple-trino-cluster.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "438"
8+
productVersion: "439"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

rust/crd/src/affinity.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ mod tests {
112112
name: simple-trino
113113
spec:
114114
image:
115-
productVersion: "438"
115+
productVersion: "439"
116116
clusterConfig:
117117
catalogLabelSelector:
118118
matchLabels:
@@ -201,7 +201,7 @@ mod tests {
201201
name: simple-trino
202202
spec:
203203
image:
204-
productVersion: "438"
204+
productVersion: "439"
205205
clusterConfig:
206206
catalogLabelSelector:
207207
matchLabels:

rust/crd/src/lib.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ mod tests {
875875
name: simple-trino
876876
spec:
877877
image:
878-
productVersion: "438"
878+
productVersion: "439"
879879
clusterConfig:
880880
catalogLabelSelector: {}
881881
"#;
@@ -890,7 +890,7 @@ mod tests {
890890
name: simple-trino
891891
spec:
892892
image:
893-
productVersion: "438"
893+
productVersion: "439"
894894
clusterConfig:
895895
catalogLabelSelector: {}
896896
tls:
@@ -907,7 +907,7 @@ mod tests {
907907
name: simple-trino
908908
spec:
909909
image:
910-
productVersion: "438"
910+
productVersion: "439"
911911
clusterConfig:
912912
catalogLabelSelector: {}
913913
tls:
@@ -925,7 +925,7 @@ mod tests {
925925
name: simple-trino
926926
spec:
927927
image:
928-
productVersion: "438"
928+
productVersion: "439"
929929
clusterConfig:
930930
catalogLabelSelector: {}
931931
tls:
@@ -945,7 +945,7 @@ mod tests {
945945
name: simple-trino
946946
spec:
947947
image:
948-
productVersion: "438"
948+
productVersion: "439"
949949
clusterConfig:
950950
catalogLabelSelector: {}
951951
"#;
@@ -960,7 +960,7 @@ mod tests {
960960
name: simple-trino
961961
spec:
962962
image:
963-
productVersion: "438"
963+
productVersion: "439"
964964
clusterConfig:
965965
catalogLabelSelector: {}
966966
tls:
@@ -977,7 +977,7 @@ mod tests {
977977
name: simple-trino
978978
spec:
979979
image:
980-
productVersion: "438"
980+
productVersion: "439"
981981
clusterConfig:
982982
catalogLabelSelector: {}
983983
tls:
@@ -998,7 +998,7 @@ mod tests {
998998
name: simple-trino
999999
spec:
10001000
image:
1001-
productVersion: "438"
1001+
productVersion: "439"
10021002
clusterConfig:
10031003
catalogLabelSelector: {}
10041004
"#;
@@ -1018,7 +1018,7 @@ mod tests {
10181018
name: simple-trino
10191019
spec:
10201020
image:
1021-
productVersion: "438"
1021+
productVersion: "439"
10221022
clusterConfig:
10231023
catalogLabelSelector: {}
10241024
workers:
@@ -1044,7 +1044,7 @@ mod tests {
10441044
name: simple-trino
10451045
spec:
10461046
image:
1047-
productVersion: "438"
1047+
productVersion: "439"
10481048
clusterConfig:
10491049
catalogLabelSelector: {}
10501050
workers:

rust/operator-binary/src/config/jvm.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// As of 2024-02-07 we support multiple Trino versions. Some using Java 17 and the latest (438) uses Java 21.
1+
// As of 2024-02-07 we support multiple Trino versions. Some using Java 17 and the latest (439) uses Java 21.
22
// This requires a different JVM config
33
use indoc::formatdoc;
44
use snafu::{OptionExt, ResultExt, Snafu};
@@ -29,7 +29,7 @@ pub enum Error {
2929
},
3030
}
3131

32-
// Currently works for all supported versions (414, 428, 438 as of 2024-02-08) but maybe be changed
32+
// Currently works for all supported versions (414, 428, 439 as of 2024-02-08) but maybe be changed
3333
// in the future depending on the role and version.
3434
pub fn jvm_config(
3535
_resolved_product_image: &ResolvedProductImage,
@@ -57,7 +57,7 @@ pub fn jvm_config(
5757
},
5858
)?;
5959

60-
// Basically copied from https://trino.io/docs/438/installation/deployment.html and merged
60+
// Basically copied from https://trino.io/docs/439/installation/deployment.html and merged
6161
// with https://trino.io/docs/428/installation/deployment.html (-XX:-G1UsePreventiveGC)
6262
Ok(formatdoc!(
6363
"

tests/test-definition.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ dimensions:
1515
values:
1616
- 414
1717
- 428
18-
- 438
18+
- 439
1919
- name: trino-latest
2020
values:
21-
- 438
21+
- 439
2222
- name: hive
2323
values:
2424
- 3.1.3

0 commit comments

Comments
 (0)