Merge pull request #1077 from migmartri/1037-validate-quotes

Disable validateQuotes linter rule
pull/1081/head
Miguel Ángel Martínez Triviño 9 years ago committed by GitHub
commit 03955050e6

@ -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

Loading…
Cancel
Save