|
|
@ -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() {
|
|
|
|
for _, subchrt := range chrt.Dependencies() {
|
|
|
|
subchrtValues := values[subchrt.Name()].(map[string]interface{})
|
|
|
|
subchrtValues := values[subchrt.Name()].(map[string]interface{})
|
|
|
|
if err := ValidateAgainstSchema(subchrt, subchrtValues); err != nil {
|
|
|
|
if err := ValidateAgainstSchema(subchrt, subchrtValues); err != nil {
|
|
|
|