From cb12d9642b96653c7099390c92b112bedd73410a Mon Sep 17 00:00:00 2001 From: Miguel Martinez Date: Thu, 18 Aug 2016 11:31:49 -0700 Subject: [PATCH] Disable validateQuotes linter rule --- pkg/lint/rules/template.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/lint/rules/template.go b/pkg/lint/rules/template.go index ace4acf8c..5638d30fe 100644 --- a/pkg/lint/rules/template.go +++ b/pkg/lint/rules/template.go @@ -92,7 +92,8 @@ func Templates(linter *support.Linter) { // Check that all the templates have a matching value linter.RunLinterRule(support.WarningSev, path, validateNoMissingValues(templatesPath, valuesToRender, preExecutedTemplate)) - linter.RunLinterRule(support.WarningSev, path, validateQuotes(string(preExecutedTemplate))) + // NOTE, disabled for now, Refs https://github.com/kubernetes/helm/issues/1037 + // linter.RunLinterRule(support.WarningSev, path, validateQuotes(string(preExecutedTemplate))) renderedContent := renderedContentMap[fileName] var yamlStruct K8sYamlStruct