File tree Expand file tree Collapse file tree 5 files changed +17
-1
lines changed
Expand file tree Collapse file tree 5 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.10.0
18+ version : 0.10.1
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ The following table lists the configurable parameters of the Trino chart and the
6464| ` coordinator.nodeSelector ` | | ` {} ` |
6565| ` coordinator.tolerations ` | | ` [] ` |
6666| ` coordinator.affinity ` | | ` {} ` |
67+ | ` coordinator.additionalConfigFiles ` | | ` {} ` |
6768| ` worker.jvm.maxHeapSize ` | | ` "8G" ` |
6869| ` worker.jvm.gcMethod.type ` | | ` "UseG1GC" ` |
6970| ` worker.jvm.gcMethod.g1.heapRegionSize ` | | ` "32M" ` |
@@ -76,6 +77,7 @@ The following table lists the configurable parameters of the Trino chart and the
7677| ` worker.nodeSelector ` | | ` {} ` |
7778| ` worker.tolerations ` | | ` [] ` |
7879| ` worker.affinity ` | | ` {} ` |
80+ | ` worker.additionalConfigFiles ` | | ` {} ` |
7981| ` kafka.mountPath ` | | ` "/etc/trino/schemas" ` |
8082| ` kafka.tableDescriptions ` | | ` {} ` |
8183
Original file line number Diff line number Diff line change @@ -103,6 +103,11 @@ data:
103103 {{- end }}
104104{{ end }}
105105
106+ {{- range $fileName, $fileContent := .Values.coordinator.additionalConfigFiles }}
107+ {{ $fileName }} : |
108+ {{- $fileContent | nindent 4 }}
109+ {{- end }}
110+
106111---
107112
108113{{- if .Values.accessControl }}{{- if eq .Values.accessControl.type "configmap" }}
Original file line number Diff line number Diff line change 7575 {{- end }}
7676{{ end }}
7777
78+ {{- range $fileName, $fileContent := .Values.worker.additionalConfigFiles }}
79+ {{ $fileName }} : |
80+ {{- $fileContent | nindent 4 }}
81+ {{- end }}
82+
7883---
7984
8085apiVersion : v1
Original file line number Diff line number Diff line change @@ -192,6 +192,8 @@ coordinator:
192192
193193 affinity : {}
194194
195+ additionalConfigFiles : {}
196+
195197worker :
196198 jvm :
197199 maxHeapSize : " 8G"
@@ -239,6 +241,8 @@ worker:
239241
240242 affinity : {}
241243
244+ additionalConfigFiles : {}
245+
242246kafka :
243247 mountPath : " /etc/trino/schemas"
244248 tableDescriptions : {}
You can’t perform that action at this time.
0 commit comments