diff --git a/pkg/chartutil/jsonschema.go b/pkg/chartutil/jsonschema.go index 0848faaf2..621c993e5 100644 --- a/pkg/chartutil/jsonschema.go +++ b/pkg/chartutil/jsonschema.go @@ -39,7 +39,7 @@ func ValidateAgainstSchema(chrt *chart.Chart, values map[string]interface{}) err } } - // For each dependency, recurively call this function with the coalesced values + // For each dependency, recursively call this function with the coalesced values for _, subchrt := range chrt.Dependencies() { subchrtValues := values[subchrt.Name()].(map[string]interface{}) if err := ValidateAgainstSchema(subchrt, subchrtValues); err != nil {