-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
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
feat(templates): allow templating in template path #6736
base: main
Are you sure you want to change the base?
Conversation
7df72a3
to
5451d21
Compare
0295e2a
to
0139ab9
Compare
Added a new template variable for `RenderTemplate` configs: `${template.path}`. This is the relative path from the project root to the config template being rendered. This is useful when you want to use the full path to a file or directory next to the `ConfigTemplate` that's being rendered (e.g. to use a shared Dockerfile that belongs the template, every time you render that template).
0139ab9
to
43d65fb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great overall! I had a couple of questions and a minor suggestion that would eliminate the need to throw InternalError
if one of the template fields in internal
is undefined.
this.name = name | ||
|
||
if (isAbsolute(params.path)) { | ||
throw new InternalError({ message: `Template path must be relative path from project root, got ${params.path}` }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this error indicating a bug in our programming? If not & it indicates a problem with the users configuration, it should be a ConfigurationError
resource.internal.parentName = renderConfig.name | ||
resource.internal.templateName = template.name | ||
resource.internal.templatePath = getRelativeTemplatePath(garden.projectRoot, template.internal.configFilePath) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we maybe encapsulate all three values in a single optional template
property? Then we can remove all those places where we have to throw, as if template is defined, parentName, templateName and templatePath would all be required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I agree. I was thinking just that as I wrote this PR. I'll make that change.
@@ -228,10 +229,12 @@ describe("config templates", () => { | |||
const module = resolved.modules[0] | |||
|
|||
expect(module.name).to.equal("test-test-bar") | |||
// TODO-DODDI: Here, we need to be actually verifying that the right values come through when resolved! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you could instantiate an appropriate context in this (or another) test & deepEvaluate the template string to see what happens
What this PR does / why we need it:
Added a new template variable for
RenderTemplate
configs:${template.path}
. This is the relative path (from the project root) to the config template being rendered. This is useful when you want to use the full path to a file or directory next to theConfigTemplate
that's being rendered (e.g. to use a shared Dockerfile that belongs the template, every time you render that template).Which issue(s) this PR fixes:
Addresses a limitation raised by a user on Discord: https://discord.com/channels/817392104711651328/1318995192501764151