Merge pull request #11928 from AdamKorcz/fix3

pkg/engine: fix nil-dereference
pull/11324/merge
Joe Julian 1 year ago committed by GitHub
commit 0468fde6ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -391,6 +391,9 @@ func recAllTpls(c *chart.Chart, templates map[string]renderable, vals chartutil.
newParentID := c.ChartFullPath()
for _, t := range c.Templates {
if t == nil {
continue
}
if !isTemplateValid(c, t.Name) {
continue
}

Loading…
Cancel
Save