Skip to content

Commit

Permalink
Upgrade default Presto version to 0.287
Browse files Browse the repository at this point in the history
  • Loading branch information
dnskr committed May 22, 2024
1 parent db36a15 commit 9f7663e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/presto/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: presto
description: The official Helm chart for Presto
type: application
version: 0.2.0
appVersion: "0.286"
appVersion: "0.287"
home: https://prestodb.io
icon: https://prestodb.io/docs/current/_static/logo.png
keywords:
Expand Down
1 change: 1 addition & 0 deletions charts/presto/templates/configmap-coordinator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ metadata:
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
node.properties: |-
node.id=${ENV:HOSTNAME}
node.location={{ .Values.node.location }}
node.environment={{ .Values.node.environment }}
node.data-dir={{ .Values.node.dataDir }}
Expand Down
1 change: 1 addition & 0 deletions charts/presto/templates/configmap-resource-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ metadata:
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
node.properties: |-
node.id=${ENV:HOSTNAME}
node.location={{ .Values.node.location }}
node.environment={{ .Values.node.environment }}
node.data-dir={{ .Values.node.dataDir }}
Expand Down
1 change: 1 addition & 0 deletions charts/presto/templates/configmap-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ metadata:
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
node.properties: |-
node.id=${ENV:HOSTNAME}
node.location={{ .Values.node.location }}
node.environment={{ .Values.node.environment }}
node.data-dir={{ .Values.node.dataDir }}
Expand Down
6 changes: 3 additions & 3 deletions charts/presto/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ resourceManager:
# Resource manager JVM options (overwrites common JVM options)
jvm: ""
# Command to launch resource manager (templated)
command: ["sh", "-c", "$PRESTO_HOME/bin/launcher run"]
command: ~
# Arguments to launch resource manager (templated)
args: ~
# Additional resource manager environment variables (templated)
Expand Down Expand Up @@ -144,7 +144,7 @@ coordinator:
# Coordinator JVM options (overwrites common JVM options)
jvm: ""
# Command to launch coordinator (templated)
command: ["sh", "-c", "$PRESTO_HOME/bin/launcher run"]
command: ~
# Arguments to launch coordinator (templated)
args: ~
# Additional coordinator environment variables (templated)
Expand Down Expand Up @@ -196,7 +196,7 @@ worker:
# Worker JVM options (overwrites common JVM options)
jvm: ""
# Command to launch worker (templated)
command: ["sh", "-c", "$PRESTO_HOME/bin/launcher run"]
command: ~
# Arguments to launch worker (templated)
args: ~
# Additional worker environment variables (templated)
Expand Down

0 comments on commit 9f7663e

Please sign in to comment.