From afd7b8258f012387079cf9b2911fde0289c917ab Mon Sep 17 00:00:00 2001 From: roicohen326 <213414225+roicohen326@users.noreply.github.com> Date: Thu, 9 Jul 2026 17:18:04 +0300 Subject: [PATCH] fix: missing newline before S3_ENDPOINT_URL breaks configmap YAML when gpkgProvider=S3 --- helm/templates/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml index 77b2a9b..96fb8ae 100644 --- a/helm/templates/configmap.yaml +++ b/helm/templates/configmap.yaml @@ -28,7 +28,7 @@ data: {{ end }} TELEMETRY_METRICS_BUCKETS: {{ .Values.mclabels.prometheus.buckets | toJson | quote }} {{- if eq (upper $storage.gpkgProvider) "S3" }} - {{- $s3HttpProtocol := ternary "https://" "http://" $storage.s3.sslEnabled -}} + {{- $s3HttpProtocol := ternary "https://" "http://" $storage.s3.sslEnabled }} S3_ENDPOINT_URL: {{ printf "%s%s" $s3HttpProtocol $storage.s3.endpointUrl | quote }} S3_ARTIFACTS_BUCKET: {{ $storage.s3.artifactsBucket | quote }} S3_SSL_ENABLED: {{ $storage.s3.sslEnabled | quote }}