allTemplates returns all templates for a chart and its dependencies. As it goes, it also prepares the values in a scope-sensitive manner.
(c *chart.Chart, vals chartutil.Values)
| 499 | // |
| 500 | // As it goes, it also prepares the values in a scope-sensitive manner. |
| 501 | func allTemplates(c *chart.Chart, vals chartutil.Values) map[string]renderable { |
| 502 | templates := make(map[string]renderable) |
| 503 | recAllTpls(c, templates, vals) |
| 504 | |
| 505 | return templates |
| 506 | } |
| 507 | |
| 508 | // recAllTpls recurses through the templates in a chart. |
| 509 | // |