From 882baf601951506f97f54c68fd316938424e2589 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 13 Mar 2024 15:11:23 +0100 Subject: [PATCH] Update lib/modules/manager/kustomize/extract.ts --- lib/modules/manager/kustomize/extract.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/modules/manager/kustomize/extract.ts b/lib/modules/manager/kustomize/extract.ts index d17a75491fcbbc..ae0a3f081f2e9e 100644 --- a/lib/modules/manager/kustomize/extract.ts +++ b/lib/modules/manager/kustomize/extract.ts @@ -148,9 +148,11 @@ export function extractHelmChart( } if (isOCIRegistry(helmChart.repo)) { + const dep = getDep(`${helmChart.repo.replace('oci://', '')}/${helmChart.name}:${helmChart.version}`, false, aliases); return { - ...getDep(`${helmChart.repo.replace('oci://', '')}/${helmChart.name}:${helmChart.version}`, false, aliases), + ...dep, depName: helmChart.name, + packageName: dep.depName, // https://github.com/helm/helm/issues/10312 // https://github.com/helm/helm/issues/10678 pinDigests: false,