From d332e1222864fb0d66c19fa68af40646a2740648 Mon Sep 17 00:00:00 2001 From: almog8k Date: Sun, 19 Jul 2026 14:46:25 +0300 Subject: [PATCH] fix: update ConfigMap template to handle S3 HTTP protocol format correctly --- .gitignore | 1 + helm/templates/configmap.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6308922..1c5da70 100644 --- a/.gitignore +++ b/.gitignore @@ -112,6 +112,7 @@ dist #helm Chart.lock +local.yaml .claude .claude-flow diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml index aa8359c..f3dd6b6 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 }}