Skip to content

Commit

Permalink
Update lib/modules/manager/terraform/extractors/resources/helm-releas…
Browse files Browse the repository at this point in the history
…e.ts

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
  • Loading branch information
morremeyer and viceice committed Jan 19, 2023
1 parent 89bb93b commit 690dc0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class HelmReleaseExtractor extends DependencyExtractor {
dep.skipReason = 'invalid-name';
} else if (isOCIRegistry(helmRelease.chart)) {
// For oci charts, we remove the oci:// and use the docker datasource
dep.depName = helmRelease.chart.replace(ociRegex, '');
dep.depName = helmRelease.chart.replace('oci://', '');
dep.datasource = DockerDatasource.id;
} else if (checkIfStringIsPath(helmRelease.chart)) {
dep.skipReason = 'local-chart';
Expand Down

0 comments on commit 690dc0d

Please sign in to comment.