From 50b0e2ef4888a18289b48af28fb3b1abd69ecd93 Mon Sep 17 00:00:00 2001 From: Fernando Diaz Date: Wed, 17 Sep 2025 13:46:20 +0200 Subject: [PATCH] Missing ) in the machine type fact --- common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.yml b/common.yml index 1a20f49..6ec3dd9 100644 --- a/common.yml +++ b/common.yml @@ -31,7 +31,7 @@ - name: set machine type for virtual undercloud set_fact: - machine_type: "{{ (type != '1029u') | ternary(type, (instackenv_content.nodes[0].pm_addr.replace('mgmt-', '') in tn10rt) | ternary('1029utn10rt', '1029utrtp') }}" + machine_type: "{{ (type != '1029u') | ternary(type, (instackenv_content.nodes[0].pm_addr.replace('mgmt-', '') in tn10rt) | ternary('1029utn10rt', '1029utrtp')) }}" vars: type: "{{ (lab_name == 'scale') | ternary(instackenv_content.nodes[0].pm_addr.split('.')[0].split('-')[4], instackenv_content.nodes[0].pm_addr.split('.')[0].split('-')[3]) }}" when: virtual_uc