From 6d7937a6ca3f5dbb01793b35aff2149de441c22e Mon Sep 17 00:00:00 2001 From: Axel Lender Date: Wed, 13 Aug 2025 12:03:43 +0200 Subject: [PATCH] chore(dev/charts-local.py): Ignore templating in base helmfile --- dev/charts-local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/charts-local.py b/dev/charts-local.py index eb0c3237..391ca1af 100755 --- a/dev/charts-local.py +++ b/dev/charts-local.py @@ -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)