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

Cleanup of jinja templating feature #8

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions nothelm/lib/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def template_project(
default_values = load_values(f'{project_dir}/values.yaml')
elif os.path.exists(f'{project_dir}/values.yaml.j2'):
default_values = load_values(f'{project_dir}/values.yaml.j2')
elif os.path.exists(f'{project_dir}/values.yaml.jinja2'):
default_values = load_values(f'{project_dir}/values.yaml.jinja2')
else:
default_values = dict()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def cli_test_suite():
setuptools.setup(
name="nothelm.py",
scripts=["bin/nothelm"],
version="0.2.2",
version="0.2.3",
author="NeuroForge GmbH & Co. KG",
author_email="kontakt@neuroforge.de",
description="nothelm.py",
Expand Down