textTemplateRenderer is an implementation of the Renderer interface using golang builtin text/template package as its templating engine
| 72 | // textTemplateRenderer is an implementation of the Renderer interface using golang builtin text/template package |
| 73 | // as its templating engine |
| 74 | type textTemplateRenderer struct { |
| 75 | files []string |
| 76 | } |
| 77 | |
| 78 | // RenderObjects renders kubernetes objects utilizing the provided TemplatingData. |
| 79 | func (r *textTemplateRenderer) RenderObjects(data *TemplatingData) ([]*unstructured.Unstructured, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected