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
Develop values template render using the Tera template engine, inspired by Jinja2/Django templating engines.
This render will be included in the zefiro-cwl repository.
Template before rendering (values.yml):
values.yml
in_file: class: File location: '{{ inputLocation }}/output/input.txt' out_file: 'output.txt'
Rendered template with input data {"inputLocation": "s3://bucket/sample/"}:
{"inputLocation": "s3://bucket/sample/"}
in_file: class: File location: 's3://bucket/sample/output/input.txt' out_file: 'output.txt'
inputLocation
The text was updated successfully, but these errors were encountered:
nsyzrantsev
Successfully merging a pull request may close this issue.
Description
Develop values template render using the Tera template engine, inspired by Jinja2/Django templating engines.
This render will be included in the zefiro-cwl repository.
Input Example:
Template before rendering (
values.yml
):Output Example:
Rendered template with input data
{"inputLocation": "s3://bucket/sample/"}
:Notes:
inputLocation
is a constant Jinja variable that can be replaced dynamically during the rendering process. Other variables can have a custom name.The text was updated successfully, but these errors were encountered: