Fix support for provisioning and external networks on different physical networks

A list of external network interfaces is generated and provided to kolla-ansible. When
the list is greater than one item, the generated list is incorrect, containing OVS
bridge names instead of external interface names. This change fixes that.
This commit is contained in:
Mark Goddard 2017-11-30 18:26:50 +00:00
parent dbb298707a
commit 3608993e36

@ -115,7 +115,7 @@
{{ kolla_neutron_bridge_names +
[item ~ network_bridge_suffix_ovs] }}
kolla_neutron_external_interfaces: >
{{ kolla_neutron_bridge_names +
{{ kolla_neutron_external_interfaces +
[network_patch_prefix ~ item ~ network_patch_suffix_ovs] }}
with_items: "{{ kolla_neutron_bridge_interfaces }}"