Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update config path path for Trino Gateway and release chart #310

Merged
merged 2 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ the name to get an output similar to the following:
```
NAME CHART VERSION APP VERSION DESCRIPTION
trino/trino 1.37.0 470 Fast distributed SQL query engine for big data ...
trino/trino-gateway 1.14.0 14 A Helm chart for Trino Gateway
trino/trino-gateway 1.15.0 15 A Helm chart for Trino Gateway
```

Use `helm search repo trino -l` for information about all available versions.
Expand Down
4 changes: 2 additions & 2 deletions charts/gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: trino-gateway
description: A Helm chart for Trino Gateway
type: application
version: "1.14.0"
appVersion: "14"
version: "1.15.0"
appVersion: "15"

icon: https://trino.io/assets/images/logos/trino-gateway-small.png

Expand Down
4 changes: 2 additions & 2 deletions charts/gateway/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# trino-gateway

![Version: 1.14.0](https://img.shields.io/badge/Version-1.14.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 14](https://img.shields.io/badge/AppVersion-14-informational?style=flat-square)
![Version: 1.15.0](https://img.shields.io/badge/Version-1.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 15](https://img.shields.io/badge/AppVersion-15-informational?style=flat-square)

A Helm chart for Trino Gateway

Expand Down Expand Up @@ -47,7 +47,7 @@ A Helm chart for Trino Gateway
* `config.dataStore.password` - string, default: `"mysecretpassword"`
* `config.dataStore.driver` - string, default: `"org.postgresql.Driver"`
* `config.clusterStatsConfiguration.monitorType` - string, default: `"INFO_API"`
* `command` - list, default: `["java","-XX:MinRAMPercentage=80.0","-XX:MaxRAMPercentage=80.0","-jar","/usr/lib/trino/gateway-ha-jar-with-dependencies.jar","/etc/gateway/config.yaml"]`
* `command` - list, default: `["java","-XX:MinRAMPercentage=80.0","-XX:MaxRAMPercentage=80.0","-jar","/usr/lib/trino-gateway/gateway-ha-jar-with-dependencies.jar","/etc/trino-gateway/config.yaml"]`

Startup command for Trino Gateway process. Add additional Java options and other modifications as desired.
* `service` - object, default: `{"ports":[{"name":"gateway","protocol":"TCP"}],"type":"ClusterIP"}`
Expand Down
2 changes: 1 addition & 1 deletion charts/gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ spec:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
- name: trino-gateway-configuration
mountPath: "/etc/gateway/config.yaml"
mountPath: "/etc/trino-gateway/config.yaml"
subPath: "config.yaml"
readOnly: true
{{- with .Values.volumeMounts }}
Expand Down
4 changes: 2 additions & 2 deletions charts/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ command:
- "-XX:MinRAMPercentage=80.0"
- "-XX:MaxRAMPercentage=80.0"
- "-jar"
- "/usr/lib/trino/gateway-ha-jar-with-dependencies.jar"
- "/etc/gateway/config.yaml"
- "/usr/lib/trino-gateway/gateway-ha-jar-with-dependencies.jar"
- "/etc/trino-gateway/config.yaml"

# -- Service for accessing the gateway. The contents of this dictionary are used
# for the [service spec](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport).
Expand Down
2 changes: 1 addition & 1 deletion tests/gateway/test-https.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ command:
- "-c"
- |
cat /etc/certificates/tls.crt /etc/certificates/tls.key > /etc/scratch/tls.pem && \
java -XX:MinRAMPercentage=80.0 -XX:MaxRAMPercentage=80.0 -jar /usr/lib/trino/gateway-ha-jar-with-dependencies.jar /etc/gateway/config.yaml
java -XX:MinRAMPercentage=80.0 -XX:MaxRAMPercentage=80.0 -jar /usr/lib/trino-gateway/gateway-ha-jar-with-dependencies.jar /etc/trino-gateway/config.yaml

config:
serverConfig:
Expand Down