Adds Helm tpl function for rendering templates passed in strings#137
Open
tpickett wants to merge 4 commits intocrossplane-contrib:mainfrom
Open
Adds Helm tpl function for rendering templates passed in strings#137tpickett wants to merge 4 commits intocrossplane-contrib:mainfrom
tpickett wants to merge 4 commits intocrossplane-contrib:mainfrom
Conversation
Signed-off-by: tpickett <travis.pickett@axioshq.com>
Signed-off-by: tpickett <travis.pickett@axioshq.com>
Signed-off-by: tpickett <travis.pickett@axioshq.com>
Signed-off-by: tpickett <travis.pickett@axioshq.com>
phisco
reviewed
Nov 20, 2024
| } | ||
|
|
||
| func initInclude(t *template.Template) func(string, interface{}) (string, error) { | ||
| func initTpl(parent *template.Template, includedNames map[string]int) func(string, interface{}) (string, error) { |
Collaborator
There was a problem hiding this comment.
for reference the helm function: https://github.com/helm/helm/blob/c724175b032a1171a7e476d0bb5e86151645b710/pkg/engine/engine.go#L148
|
any update on this PR? this functionality can be handy |
|
Bueller? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of your changes
This PR adds the helm
tplfunction for rendering templates within the templates. See: https://helm.sh/docs/howto/charts_tips_and_tricks/#using-the-tpl-functionFixes #140
I have: