Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

thsig
Copy link
Collaborator

@thsig thsig commented Dec 20, 2024

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 the ConfigTemplate 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

@thsig thsig requested a review from stefreak December 20, 2024 12:01
@thsig thsig marked this pull request as draft January 16, 2025 12:43
@thsig thsig force-pushed the add-template-path-to-parent-context branch from 7df72a3 to 5451d21 Compare February 18, 2025 14:07
@thsig thsig marked this pull request as ready for review February 18, 2025 14:08
@thsig thsig force-pushed the add-template-path-to-parent-context branch 5 times, most recently from 0295e2a to 0139ab9 Compare February 24, 2025 08:48
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).
@thsig thsig force-pushed the add-template-path-to-parent-context branch from 0139ab9 to 43d65fb Compare February 24, 2025 09:50
Copy link
Member

@stefreak stefreak left a 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}` })
Copy link
Member

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

Comment on lines 367 to +369
resource.internal.parentName = renderConfig.name
resource.internal.templateName = template.name
resource.internal.templatePath = getRelativeTemplatePath(garden.projectRoot, template.internal.configFilePath)
Copy link
Member

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.

Copy link
Collaborator Author

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!
Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants