From 549082379c64b998cc553f4ac5a5d829e79436c1 Mon Sep 17 00:00:00 2001 From: Danilo Patrucco Date: Fri, 5 Jul 2024 11:34:38 -0400 Subject: [PATCH] test fix Signed-off-by: Danilo Patrucco --- pkg/action/lint.go | 2 +- pkg/lint/lint.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/action/lint.go b/pkg/action/lint.go index 6c010e26e..ff202cec7 100644 --- a/pkg/action/lint.go +++ b/pkg/action/lint.go @@ -9,7 +9,7 @@ import ( "helm.sh/helm/v3/pkg/chartutil" "helm.sh/helm/v3/pkg/lint" - "helm.sh/helm/v3/pkg/lint/rules" + // "helm.sh/helm/v3/pkg/lint/rules" "helm.sh/helm/v3/pkg/lint/support" ) diff --git a/pkg/lint/lint.go b/pkg/lint/lint.go index 5d79c5c32..53b45c5e6 100644 --- a/pkg/lint/lint.go +++ b/pkg/lint/lint.go @@ -25,7 +25,7 @@ import ( func All(basedir string, values map[string]interface{}, namespace string, _ bool) support.Linter { return AllWithKubeVersion(basedir, values, namespace, nil, "") } -func AllWithKubeVersion(chartPath string, vals map[string]interface{}, namespace string, kubeVersion *chartutil.KubeVersion, ignoreFilePath string) support.Linter +func AllWithKubeVersion(basedir string, values map[string]interface{}, namespace string, kubeVersion *chartutil.KubeVersion, lintIgnoreFile string) support.Linter { chartDir, _ := filepath.Abs(basedir) var ignorePatterns []string if lintIgnoreFile != "" {