OSH cannot be deployed because the name is currently a string instead of
a variable that should be interpreted by ansible
deploy-scenario:k8-calico-nofeature
installer-type:osh
Change-Id: Ib0ec71d181d62ee1830861427ca6d4f64625fb4e
Signed-off-by: Manuel Buil <mbuil@suse.com>
block:
- set_fact:
- node_name: idf.kubespray.hostnames[item.name]
+ node_name: "{{ idf.kubespray.hostnames[item.name] }}"
when: installer_type == "kubespray"
- set_fact:
- node_name: idf.osa.hostnames[item.name]
+ node_name: "{{ idf.osa.hostnames[item.name] }}"
when: installer_type == "osa"
- set_fact:
- node_name: idf.osh.hostnames[item.name]
+ node_name: "{{ idf.osh.hostnames[item.name] }}"
when: installer_type == "osh"
- set_fact: