Skip to content

Commit f164ba6

Browse files
committed
Ensure no fixed ip for ext port
The external data ports attached to gateways does not need an ip address so we ensure no-fixed-ips. This prevents conflicts with floating ips created in the overlay network. (cherry picked from commit c47654d)
1 parent bc81884 commit f164ba6

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

zaza/openstack/utilities/openstack.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ def create_additional_port_for_machines(novaclient, neutronclient, net_id,
990990
"name": ext_port_name,
991991
"network_id": net_id,
992992
"port_security_enabled": False,
993+
"fixed_ips": [],
993994
}
994995
}
995996
port = neutronclient.create_port(body=body_value)

0 commit comments

Comments
 (0)