Skip to content

Commit 25b374b

Browse files
authored
fix: update gpkgPath formatting in deployment template to use internalPvc.gpkgSubPath (#184)
* fix: update gpkgPath formatting in deployment template to use internalPvc.gpkgSubPath * fix: update version to 2.1.7 in Chart.yaml
1 parent ea5c937 commit 25b374b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: gpkg-merger
33
description: A Helm chart for gpkg-merger service # refers to MergerService
44
type: application
5-
version: 2.1.6
6-
appVersion: 2.1.6
5+
version: 2.1.7
6+
appVersion: 2.1.7
77
dependencies:
88
- name: mclabels
99
version: 1.0.1

helm/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{{- $samePvc := and $fs.ingestionSourcePvc.enabled $fs.internalPvc.enabled (eq $fs.internalPvc.name $fs.ingestionSourcePvc.name) }}
1616
{{- $internalVolumeName := ternary "ingestion-storage" "internal-storage" $samePvc }}
1717

18-
{{ $gpkgPath := clean (printf "/%s/%s" $fs.internalPvc.mountPath $fs.ingestionSourcePvc.gpkgSubPath) }}
18+
{{ $gpkgPath := clean (printf "/%s/%s" $fs.internalPvc.mountPath $fs.internalPvc.gpkgSubPath) }}
1919
{{ $tilePath := clean (printf "/%s/%s" $fs.internalPvc.mountPath $fs.internalPvc.tilesSubPath) }}
2020
{{ $ingestionSourcePath := clean (printf "/%s/%s" $fs.ingestionSourcePvc.mountPath $fs.ingestionSourcePvc.subPath) }}
2121
{{ $sources := ternary $tilePath $ingestionSourcePath .Values.isExporter }}

0 commit comments

Comments
 (0)