From 9bf62d06a15a5ccbb464526ec6d7c30963073cab Mon Sep 17 00:00:00 2001 From: almog8k Date: Mon, 26 Jan 2026 10:44:25 +0200 Subject: [PATCH] fix: correct sources path formatting in deployment template --- helm/Chart.yaml | 4 ++-- helm/templates/deployment.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 5be0881..dd96d52 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: gpkg-merger description: A Helm chart for gpkg-merger service # refers to MergerService type: application -version: 2.1.1 -appVersion: 2.1.1 +version: 2.1.2 +appVersion: 2.1.2 dependencies: - name: mclabels version: 1.0.1 diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 04f4035..1f40d8c 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -12,7 +12,7 @@ {{- $storage := (include "common.storage.merged" .) | fromYaml }} {{ $gpkgPath := clean (printf "%s/%s" $fs.internalPvc.mountPath $fs.ingestionSourcePvc.gpkgSubPath) }} {{ $tilePath := clean (printf "%s/%s" $fs.internalPvc.mountPath $fs.internalPvc.tilesSubPath) }} -{{ $sources := (ternary $tilePath (printf "%s%s" $fs.ingestionSourcePvc.mountPath $fs.ingestionSourcePvc.subPath) .Values.isExporter ) }} +{{ $sources := (ternary $tilePath clean (printf "%s/%s" $fs.ingestionSourcePvc.mountPath $fs.ingestionSourcePvc.subPath) .Values.isExporter ) }} apiVersion: apps/v1 kind: Deployment