From 0e295a8f1a032753b86ee8b966ef86fbffdec04c Mon Sep 17 00:00:00 2001 From: shlomiko Date: Tue, 27 Jan 2026 14:18:48 +0200 Subject: [PATCH] fix: internal pvc mountPath for gpkgPath --- helm/templates/configmap.yaml | 2 +- helm/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml index 146d683..834e108 100644 --- a/helm/templates/configmap.yaml +++ b/helm/templates/configmap.yaml @@ -4,7 +4,7 @@ {{- $serviceUrls := (include "common.serviceUrls.merged" .) | fromYaml }} {{- $storage := (include "common.storage.merged" .) | fromYaml }} {{- $jobDefinitions := (include "common.jobDefinitions.merged" .) | fromYaml }} -{{- $gpkgPath := (printf "%s/%s" $storage.fs.internalPvc.outputPath $storage.fs.internalPvc.gpkgSubPath) }} +{{- $gpkgPath := (printf "%s/%s" $storage.fs.internalPvc.mountPath $storage.fs.internalPvc.gpkgSubPath) }} {{- if .Values.enabled -}} diff --git a/helm/values.yaml b/helm/values.yaml index 8ec4f83..0ceb833 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -77,8 +77,8 @@ storage: internalPvc: enabled: false name: "" + mountPath: "" gpkgSubPath: "" - outputPath: "" cloudProvider: dockerRegistryUrl: 'my-registry-url.io'