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 != "" {