Merge pull request #79 from openstack-charmers/disable_addport_for_dvr

disable add_dataport_to_netplan for dvr deployments
This commit is contained in:
Frode Nordahl
2019-10-02 13:18:29 +02:00
committed by GitHub

View File

@@ -575,6 +575,9 @@ def configure_gateway_ext_port(novaclient, neutronclient,
"""
if dvr_mode:
uuids = get_ovs_uuids()
# If dvr, do not attempt to persist nic in netplan
# https://github.com/openstack-charmers/zaza-openstack-tests/issues/78
add_dataport_to_netplan = False
else:
uuids = get_gateway_uuids()