chore(dev/charts-local.py): Ignore templating in base helmfile

This commit is contained in:
Axel Lender
2025-08-13 12:03:43 +02:00
committed by Thorsten Roßner
parent 62ba5aba49
commit 6d7937a6ca

View File

@@ -129,7 +129,7 @@ def grep_yaml(file):
with open(file, 'r') as file:
content = ''
for line in file.readlines():
if not ': {{' in line and not '- {{' in line:
if not '{{' in line:
content += line
return yaml.safe_load(content)