Skip to content

Commit

Permalink
Fix maxtotalmemory (#81)
Browse files Browse the repository at this point in the history
* fix max-total-memory typo

* bump up chart
  • Loading branch information
valeriano-manassero authored Aug 24, 2021
1 parent f7c0f20 commit 5633904
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion valeriano-manassero/trino/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "358"
description: High performance, distributed SQL query engine for big data
name: trino
version: 1.3.0
version: 1.3.1
home: https://trino.io
icon: https://trino.io/assets/images/trino-logo/trino-ko_tiny-alt.svg
sources:
Expand Down
2 changes: 1 addition & 1 deletion valeriano-manassero/trino/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# trino

![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![AppVersion: 358](https://img.shields.io/badge/AppVersion-358-informational?style=flat-square)
![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 358](https://img.shields.io/badge/AppVersion-358-informational?style=flat-square)

High performance, distributed SQL query engine for big data

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ data:
{{- end }}
query.max-memory={{ .Values.server.config.query.maxMemory }}
query.max-memory-per-node={{ .Values.server.config.query.maxMemoryPerNode }}
query.max-memory={{ .Values.server.config.query.maxTotalMemory }}
query.max-total-memory={{ .Values.server.config.query.maxTotalMemory }}
query.max-total-memory-per-node={{ .Values.server.config.query.maxTotalMemoryPerNode }}
discovery-server.enabled=true
discovery.uri=http://localhost:{{ .Values.server.config.http.port }}
Expand Down
2 changes: 1 addition & 1 deletion valeriano-manassero/trino/templates/configmap-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data:
http-server.http.port={{ .Values.server.config.http.port }}
query.max-memory={{ .Values.server.config.query.maxMemory }}
query.max-memory-per-node={{ .Values.server.config.query.maxMemoryPerNode }}
query.max-memory={{ .Values.server.config.query.maxTotalMemory }}
query.max-total-memory={{ .Values.server.config.query.maxTotalMemory }}
query.max-total-memory-per-node={{ .Values.server.config.query.maxTotalMemoryPerNode }}
discovery.uri=http://{{ template "trino.fullname" . }}:{{ .Values.server.config.http.port }}
{{- if .Values.server.config.prestoCompatibleHeader }}
Expand Down

0 comments on commit 5633904

Please sign in to comment.