From 2e57efe194107d0036fb23b1c3b97672ac1f0163 Mon Sep 17 00:00:00 2001 From: ehila Date: Fri, 31 Oct 2025 21:16:04 -0400 Subject: [PATCH] fix: resolve error in certificateVerification for tnf agent fix error where False gets interpreted as Enabled Signed-off-by: ehila --- .../roles/manifests/templates/install-config_baremetal_yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/roles/manifests/templates/install-config_baremetal_yaml.j2 b/agent/roles/manifests/templates/install-config_baremetal_yaml.j2 index fb38847e8..e6d4edaf6 100644 --- a/agent/roles/manifests/templates/install-config_baremetal_yaml.j2 +++ b/agent/roles/manifests/templates/install-config_baremetal_yaml.j2 @@ -34,7 +34,7 @@ controlPlane: address: {{ bmc_addresses[loop.index0] }} username: {{ bmc_usernames[loop.index0] }} password: {{ bmc_passwords[loop.index0] }} - certificateVerification: {{ 'Enabled' if bmc_verify_cas[loop.index0] else 'Disabled' }} + certificateVerification: {{ 'Disabled' if bmc_verify_cas[loop.index0] == "False" else 'Enabled' }} {% endfor %} {% endif %} fips: {{ fips_mode }}