From 9efedc1d9906fceccce585af9be3f19b0e70c574 Mon Sep 17 00:00:00 2001 From: almog8k Date: Mon, 26 Jan 2026 09:55:44 +0200 Subject: [PATCH] fix: paths formatting in deployment template --- helm/Chart.yaml | 4 ++-- helm/templates/deployment.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 1879641..5be0881 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.0 -appVersion: 2.1.0 +version: 2.1.1 +appVersion: 2.1.1 dependencies: - name: mclabels version: 1.0.1 diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 2f4a2d3..04f4035 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -10,8 +10,8 @@ {{- $s3 := (include "common.s3.merged" .) | fromYaml }} {{- $fs := (include "common.fs.merged" .) | fromYaml }} {{- $storage := (include "common.storage.merged" .) | fromYaml }} -{{ $gpkgPath := (printf "%s%s" $fs.internalPvc.mountPath $fs.ingestionSourcePvc.gpkgSubPath) }} -{{ $tilePath := (printf "%s%s" $fs.internalPvc.mountPath $fs.internalPvc.tilesSubPath) }} +{{ $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 ) }} apiVersion: apps/v1