From 370fbd6e6ff82ba73dcb20daa127daac2f6d5e77 Mon Sep 17 00:00:00 2001 From: Christoph Keil Date: Thu, 14 Jul 2022 15:49:36 +0200 Subject: [PATCH] Add node fix for Daemon Network Signed-off-by: Christoph Keil chkeil@de.ibm.com --- roles/core_install/templates/AddNodeFile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/core_install/templates/AddNodeFile.j2 b/roles/core_install/templates/AddNodeFile.j2 index cdbe23a9..8572f07b 100644 --- a/roles/core_install/templates/AddNodeFile.j2 +++ b/roles/core_install/templates/AddNodeFile.j2 @@ -1,4 +1,4 @@ {% for host in groups['scale_cluster_candidates'] | sort %} -{{ hostvars[host].scale_daemon_nodename }}:nonquorum-client +{{ hostvars[host].scale_daemon_nodename }}:{% if hostvars[host].scale_cluster_quorum | bool %}quorum{% else %}nonquorum{% endif %}-{% if hostvars[host].scale_cluster_manager | bool %}manager{% else %}client{% endif %} {% endfor %}