From 623f964eb169dd6e030274143569c2d8bc0da97f Mon Sep 17 00:00:00 2001 From: Christos Kotsis Date: Tue, 3 Oct 2023 18:31:44 +0300 Subject: [PATCH] Fix Server.ExtraConfig indentation Switch workerExtraConfig indentation to 2 Switch coordinatorExtraConfig indentation to 2 --- charts/trino/templates/configmap-coordinator.yaml | 2 +- charts/trino/templates/configmap-worker.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/trino/templates/configmap-coordinator.yaml b/charts/trino/templates/configmap-coordinator.yaml index 6821f306..fff392f5 100644 --- a/charts/trino/templates/configmap-coordinator.yaml +++ b/charts/trino/templates/configmap-coordinator.yaml @@ -66,7 +66,7 @@ data: http-server.https.port={{ .Values.server.config.https.port }} http-server.https.keystore.path={{ .Values.server.config.https.keystore.path }} {{- end }} - {{ .Values.server.coordinatorExtraConfig | indent 4 }} + {{ .Values.server.coordinatorExtraConfig | indent 2 }} {{- if .Values.accessControl }}{{- if eq .Values.accessControl.type "configmap" }} access-control.properties: | diff --git a/charts/trino/templates/configmap-worker.yaml b/charts/trino/templates/configmap-worker.yaml index 36fc1511..dacb6cc7 100644 --- a/charts/trino/templates/configmap-worker.yaml +++ b/charts/trino/templates/configmap-worker.yaml @@ -54,7 +54,7 @@ data: {{- range $configValue := .Values.additionalConfigProperties }} {{ $configValue }} {{- end }} - {{ .Values.server.workerExtraConfig | indent 4 }} + {{ .Values.server.workerExtraConfig | indent 2 }} exchange-manager.properties: | exchange-manager.name={{ .Values.server.exchangeManager.name }}