From a588ec1d68287ca14bf54b55bc7cc1ce489a63f4 Mon Sep 17 00:00:00 2001 From: Sonny Garcia Date: Thu, 1 Feb 2018 10:45:54 -0500 Subject: [PATCH] adds nameOverride/fullnameOverride to values.yaml Prior to Helm v2.8, `helm lint --strict' did not fail when trying to use values that did not exist in the values.yaml file. Now that this behavior has changed, we need to add those variables to our file to pass a strict linting test. --- pkg/chartutil/create.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/chartutil/create.go b/pkg/chartutil/create.go index 319a75e2f..838c7845d 100644 --- a/pkg/chartutil/create.go +++ b/pkg/chartutil/create.go @@ -93,6 +93,10 @@ nodeSelector: {} tolerations: [] affinity: {} + +# Override chart app names with caution, here be dragons! +nameOverride: "" +fullnameOverride: "" ` const defaultIgnore = `# Patterns to ignore when building packages.