From 127d7c3269c38159cab66d1315d604a38f089329 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Wed, 25 Feb 2026 09:41:31 +1000 Subject: [PATCH] get yamllint to ignore templates in openshift apps previously, the yamllint ingores for templates only worked for roles one level down. Since our openshift apps are nested in the openshift-apps directory, yamllint was trying to lint jinja templates with a .yml extension. This updates the yamllint ignores to include templates in openshift apps roles. Signed-off-by: Ryan Lerch --- .yamllint.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.yamllint.yaml b/.yamllint.yaml index 45753282c7..04f74930a2 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -26,4 +26,5 @@ rules: ignore: - '*/templates/*' + - '*/openshift-apps/*/templates/*' ...