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