Skip to content
Closed
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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,18 @@ The following table lists the configurable parameters of the Trino chart and the
| `server.jvm.gcMethod.g1.heapRegionSize` | | `"32M"` |
| `additionalNodeProperties` | | `{}` |
| `additionalJVMConfig` | | `{}` |
| `additionalConfigProperties` | | `{}` |
| `additionalConfigProperties` | | `[]` |
| `additionalLogProperties` | | `{}` |
| `additionalCatalogs` | | `{}` |
| `coordinatorPodLabels` | | `{}` |
| `securityContext.runAsUser` | | `1000` |
| `securityContext.runAsGroup` | | `1000` |
| `service.type` | | `"ClusterIP"` |
| `service.port` | | `8080` |
| `resources` | | `{}` |
| `nodeSelector` | | `{}` |
| `tolerations` | | `[]` |
| `workerPodLabels` | | `{}` |
| `affinity` | | `{}` |

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

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

Fast distributed SQL query engine for big data analytics

**Homepage:** <https://trino.io/>

## Maintainers

| Name | Email | Url |
| ---- | ------ | --- |
| Trino community | | |

## Source Code

* <https://github.com/trinodb/charts>
* <https://github.com/trinodb/trino/tree/master/core/docker>

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| additionalCatalogs | object | `{}` | |
| additionalConfigProperties | list | `[]` | |
| additionalJVMConfig | object | `{}` | |
| additionalLogProperties | object | `{}` | |
| additionalNodeProperties | object | `{}` | |
| affinity | object | `{}` | |
| coordinatorPodLabels | object | `{}` | Labels for coordinator pods |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"trinodb/trino"` | |
| image.tag | string | `"latest"` | |
| nodeSelector | object | `{}` | |
| resources | object | `{}` | |
| securityContext.runAsGroup | int | `1000` | |
| securityContext.runAsUser | int | `1000` | |
| server.config.http.port | int | `8080` | |
| server.config.memory.heapHeadroomPerNode | string | `"1GB"` | |
| server.config.path | string | `"/etc/trino"` | |
| server.config.query.maxMemory | string | `"4GB"` | |
| server.config.query.maxMemoryPerNode | string | `"1GB"` | |
| server.config.query.maxTotalMemoryPerNode | string | `"2GB"` | |
| server.jvm.gcMethod.g1.heapRegionSize | string | `"32M"` | |
| server.jvm.gcMethod.type | string | `"UseG1GC"` | |
| server.jvm.maxHeapSize | string | `"8G"` | |
| server.log.trino.level | string | `"INFO"` | |
| server.node.dataDir | string | `"/data/trino"` | |
| server.node.environment | string | `"production"` | |
| server.node.pluginDir | string | `"/usr/lib/trino/plugin"` | |
| server.workers | int | `2` | |
| service.port | int | `8080` | |
| service.type | string | `"ClusterIP"` | |
| tolerations | list | `[]` | |
| workerPodLabels | object | `{}` | Labels for worker pods |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
3 changes: 3 additions & 0 deletions charts/trino/templates/deployment-coordinator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ spec:
app: {{ template "trino.name" . }}
release: {{ .Release.Name }}
component: coordinator
{{- if .Values.coordinatorPodLabels }}
{{ toYaml .Values.coordinatorPodLabels | nindent 8 }}
{{- end }}
spec:
{{- with .Values.securityContext }}
securityContext:
Expand Down
3 changes: 3 additions & 0 deletions charts/trino/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ spec:
app: {{ template "trino.name" . }}
release: {{ .Release.Name }}
component: worker
{{- if .Values.workerPodLabels }}
{{ toYaml .Values.workerPodLabels | nindent 8 }}
{{- end }}
spec:
volumes:
- name: config-volume
Expand Down
8 changes: 7 additions & 1 deletion charts/trino/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ additionalNodeProperties: {}

additionalJVMConfig: {}

additionalConfigProperties: {}
additionalConfigProperties: []
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you change the type for this field?


additionalLogProperties: {}

Expand Down Expand Up @@ -69,3 +69,9 @@ nodeSelector: {}
tolerations: []

affinity: {}

# -- Labels for coordinator pods
coordinatorPodLabels: {}

# -- Labels for worker pods
workerPodLabels: {}