From 4a1abe6c0a72215cf4878cee1830ea69a9663eb1 Mon Sep 17 00:00:00 2001 From: Keigo Noha Date: Mon, 14 Nov 2022 15:00:00 +0900 Subject: [PATCH] Fix tripleo_delegate_to parameter in heat-engine Ia9d3c8d0a3098191b2d8b12fc24eee4517c6c521 introduces the new logic to tripleo_delegate_to parameter. Unfortunately, there is an unnecessary character, '| |' in the line. This blocks 'overcloud external-upgrade run'. This fix remove the additonal '|' from the line. Closes-Bug: #1996492 Change-Id: If0e91f1b4956f451346256487c3626ed7899643b --- deployment/heat/heat-engine-container-puppet.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/heat/heat-engine-container-puppet.yaml b/deployment/heat/heat-engine-container-puppet.yaml index 59a61af0bb..7fd71cf174 100644 --- a/deployment/heat/heat-engine-container-puppet.yaml +++ b/deployment/heat/heat-engine-container-puppet.yaml @@ -324,4 +324,4 @@ outputs: vars: tripleo_containers_to_stop: - heat_engine - tripleo_delegate_to: "{{ groups['heat_engine'] | | difference(groups['excluded_overcloud']) }}" + tripleo_delegate_to: "{{ groups['heat_engine'] | difference(groups['excluded_overcloud']) }}"