Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
- Support for the client spooling protocol ([#793]).
- Helm: Allow Pod `priorityClassName` to be configured ([#798]).
- Add support for Trino 477 ([#801]).
- Add support for Hive 4.1.0 ([#805]).

### Changed

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

## [25.7.0] - 2025-07-23

Expand Down
16 changes: 13 additions & 3 deletions docs/modules/trino/examples/usage-guide/trino-insecure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,28 @@ spec:
default:
replicas: 1
---
apiVersion: v1
kind: Secret
metadata:
name: hive-credentials
type: Opaque
stringData:
username: APP
password: mine
---
apiVersion: hive.stackable.tech/v1alpha1
kind: HiveCluster
metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
custom: oci.stackable.tech/sdp/hive:4.1.0-stackable0.0.0-dev-amd64
pullPolicy: IfNotPresent
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
user: APP
password: mine
credentialsSecret: hive-credentials
dbType: derby
metastore:
roleGroups:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,26 @@ type: kubernetes.io/opaque
stringData:
admin: admin
---
apiVersion: v1
kind: Secret
metadata:
name: hive-credentials
type: Opaque
stringData:
username: APP
password: mine
---
apiVersion: hive.stackable.tech/v1alpha1
kind: HiveCluster
metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
user: APP
password: mine
credentialsSecret: hive-credentials
dbType: derby
metastore:
roleGroups:
Expand Down
15 changes: 12 additions & 3 deletions docs/modules/trino/examples/usage-guide/trino-secure-tls-only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,27 @@ spec:
namespace: default
autoGenerate: true
---

apiVersion: v1
kind: Secret
metadata:
name: hive-credentials
type: Opaque
stringData:
username: APP
password: mine
---
apiVersion: hive.stackable.tech/v1alpha1
kind: HiveCluster
metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
user: APP
password: mine
credentialsSecret: hive-credentials
dbType: derby
metastore:
roleGroups:
Expand Down
15 changes: 12 additions & 3 deletions docs/modules/trino/examples/usage-guide/trino-secure-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,27 @@ type: kubernetes.io/opaque
stringData:
admin: admin
---

apiVersion: v1
kind: Secret
metadata:
name: hive-credentials
type: Opaque
stringData:
username: APP
password: mine
---
apiVersion: hive.stackable.tech/v1alpha1
kind: HiveCluster
metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
user: APP
password: mine
credentialsSecret: hive-credentials
dbType: derby
metastore:
roleGroups:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-trino-cluster-hive-ha-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ metadata:
name: simple-hive
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:postgresql://hive-postgresql:5432/hive
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-trino-cluster-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-trino-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ metadata:
name: simple-hive-derby
spec:
image:
productVersion: 4.0.0
productVersion: 4.1.0
clusterConfig:
database:
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
Expand Down
4 changes: 2 additions & 2 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ dimensions:
- name: hive
values:
- 3.1.3
- 4.0.1
- 4.1.0
- name: hive-latest
values:
- 4.0.1
- 4.1.0
- name: opa
values:
- 1.8.0
Expand Down
Loading