From e890f161ed205ad1f181f55cecb2d66ffee5f142 Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Mon, 26 Sep 2022 10:16:53 +0200 Subject: [PATCH] CI: allow Jinja templating anywhere inside task and play names With the release of ansible-lint 6.7.0, the openstack-tox-linters job started failing with these errors: WARNING Listing 30 violation(s) that are fatal ansible/roles/ceilometer/tasks/config.yml:66: name: Jinja templates should only be at the end of 'name' (name[template]) [...] Add this new check to skip_list for now. Change-Id: Ia82a88ee3b9bb6a3cb09f09c6568d1914ee2592d --- .ansible-lint | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ansible-lint b/.ansible-lint index f7f85d2bc4..c49cf2af68 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -28,3 +28,5 @@ skip_list: # NOTE(frickler): Agreed at Zed PTG not to use FQCN for builtin actions for now, due to # conflicts with open patches and backports. - fqcn-builtins + # Allow Jinja templating inside task and play names + - name[template]