We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current default merge strategy is just to override all the content. E.g. we have following setup: playbook:
templates: - templ2.tmpl - templ1.tmpl variables: var: value ...
templ1.tmpl:
root: child1: ... child2: ...
templ2.tmpl:
root: child3: ...
Result will be
It's completely not ok, because it makes templates hierarchy useless. Need to add deep merging of templates, so rendered result will be the following:
root: child1: ... child2: ... child3: ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current default merge strategy is just to override all the content. E.g. we have following setup:
playbook:
templ1.tmpl:
templ2.tmpl:
Result will be
It's completely not ok, because it makes templates hierarchy useless. Need to add deep merging of templates, so rendered result will be the following:
The text was updated successfully, but these errors were encountered: