diff options
Diffstat (limited to 'xci/playbooks/roles/create-nodes/tasks/baremetalhoststojson.yml')
-rw-r--r-- | xci/playbooks/roles/create-nodes/tasks/baremetalhoststojson.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/xci/playbooks/roles/create-nodes/tasks/baremetalhoststojson.yml b/xci/playbooks/roles/create-nodes/tasks/baremetalhoststojson.yml index 8aeea321..740bfac6 100644 --- a/xci/playbooks/roles/create-nodes/tasks/baremetalhoststojson.yml +++ b/xci/playbooks/roles/create-nodes/tasks/baremetalhoststojson.yml @@ -29,7 +29,16 @@ block: - set_fact: - node_name: "{{ ('kubespray' in installer_type) | ternary(idf.kubespray.hostnames[item.name], idf.osa.hostnames[item.name]) }}" + node_name: idf.kubespray.hostnames[item.name] + when: installer_type == "kubespray" + + - set_fact: + node_name: idf.osa.hostnames[item.name] + when: installer_type == "osa" + + - set_fact: + node_name: idf.osh.hostnames[item.name] + when: installer_type == "osh" - set_fact: host_group: "{{ node_default_groups }}" |