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
(cherry picked from commit 4a1abe6c0a72215cf4878cee1830ea69a9663eb1)
This commit is contained in:
Keigo Noha 2022-11-14 15:00:00 +09:00
parent 03ca3d8f2e
commit 97052ac040

View File

@ -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']) }}"