Skip to content

Commit 06dab8c

Browse files
authored
chore: bump hive to 4.1.0 (#805)
* chore: bump hive to 4.1.0 * chore: changelog * fix: remove accidental change
1 parent cce0698 commit 06dab8c

10 files changed

+54
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
1010
- Support for the client spooling protocol ([#793]).
1111
- Helm: Allow Pod `priorityClassName` to be configured ([#798]).
1212
- Add support for Trino 477 ([#801]).
13+
- Add support for Hive 4.1.0 ([#805]).
1314

1415
### Changed
1516

@@ -34,6 +35,7 @@ All notable changes to this project will be documented in this file.
3435
[#796]: https://github.com/stackabletech/trino-operator/pull/796
3536
[#798]: https://github.com/stackabletech/trino-operator/pull/798
3637
[#801]: https://github.com/stackabletech/trino-operator/pull/801
38+
[#805]: https://github.com/stackabletech/trino-operator/pull/805
3739

3840
## [25.7.0] - 2025-07-23
3941

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

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,26 @@ spec:
3131
default:
3232
replicas: 1
3333
---
34+
apiVersion: v1
35+
kind: Secret
36+
metadata:
37+
name: hive-credentials
38+
type: Opaque
39+
stringData:
40+
username: APP
41+
password: mine
42+
---
3443
apiVersion: hive.stackable.tech/v1alpha1
3544
kind: HiveCluster
3645
metadata:
3746
name: simple-hive-derby
3847
spec:
3948
image:
40-
productVersion: 4.0.0
49+
productVersion: 4.1.0
4150
clusterConfig:
4251
database:
4352
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
44-
user: APP
45-
password: mine
53+
credentialsSecret: hive-credentials
4654
dbType: derby
4755
metastore:
4856
roleGroups:

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

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,26 @@ type: kubernetes.io/opaque
6666
stringData:
6767
admin: admin
6868
---
69+
apiVersion: v1
70+
kind: Secret
71+
metadata:
72+
name: hive-credentials
73+
type: Opaque
74+
stringData:
75+
username: APP
76+
password: mine
77+
---
6978
apiVersion: hive.stackable.tech/v1alpha1
7079
kind: HiveCluster
7180
metadata:
7281
name: simple-hive-derby
7382
spec:
7483
image:
75-
productVersion: 4.0.0
84+
productVersion: 4.1.0
7685
clusterConfig:
7786
database:
7887
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
79-
user: APP
80-
password: mine
88+
credentialsSecret: hive-credentials
8189
dbType: derby
8290
metastore:
8391
roleGroups:

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

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,27 @@ spec:
4646
namespace: default
4747
autoGenerate: true
4848
---
49+
50+
apiVersion: v1
51+
kind: Secret
52+
metadata:
53+
name: hive-credentials
54+
type: Opaque
55+
stringData:
56+
username: APP
57+
password: mine
58+
---
4959
apiVersion: hive.stackable.tech/v1alpha1
5060
kind: HiveCluster
5161
metadata:
5262
name: simple-hive-derby
5363
spec:
5464
image:
55-
productVersion: 4.0.0
65+
productVersion: 4.1.0
5666
clusterConfig:
5767
database:
5868
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
59-
user: APP
60-
password: mine
69+
credentialsSecret: hive-credentials
6170
dbType: derby
6271
metastore:
6372
roleGroups:

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

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,27 @@ type: kubernetes.io/opaque
6666
stringData:
6767
admin: admin
6868
---
69+
70+
apiVersion: v1
71+
kind: Secret
72+
metadata:
73+
name: hive-credentials
74+
type: Opaque
75+
stringData:
76+
username: APP
77+
password: mine
78+
---
6979
apiVersion: hive.stackable.tech/v1alpha1
7080
kind: HiveCluster
7181
metadata:
7282
name: simple-hive-derby
7383
spec:
7484
image:
75-
productVersion: 4.0.0
85+
productVersion: 4.1.0
7686
clusterConfig:
7787
database:
7888
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
79-
user: APP
80-
password: mine
89+
credentialsSecret: hive-credentials
8190
dbType: derby
8291
metastore:
8392
roleGroups:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ metadata:
134134
name: simple-hive-derby
135135
spec:
136136
image:
137-
productVersion: 4.0.0
137+
productVersion: 4.1.0
138138
clusterConfig:
139139
database:
140140
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ metadata:
4343
name: simple-hive
4444
spec:
4545
image:
46-
productVersion: 4.0.0
46+
productVersion: 4.1.0
4747
clusterConfig:
4848
database:
4949
connString: jdbc:postgresql://hive-postgresql:5432/hive

examples/simple-trino-cluster-s3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ metadata:
5050
name: simple-hive-derby
5151
spec:
5252
image:
53-
productVersion: 4.0.0
53+
productVersion: 4.1.0
5454
clusterConfig:
5555
database:
5656
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true

examples/simple-trino-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ metadata:
4646
name: simple-hive-derby
4747
spec:
4848
image:
49-
productVersion: 4.0.0
49+
productVersion: 4.1.0
5050
clusterConfig:
5151
database:
5252
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true

tests/test-definition.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ dimensions:
3232
- name: hive
3333
values:
3434
- 3.1.3
35-
- 4.0.1
35+
- 4.1.0
3636
- name: hive-latest
3737
values:
38-
- 4.0.1
38+
- 4.1.0
3939
- name: opa
4040
values:
4141
- 1.8.0

0 commit comments

Comments
 (0)