From cd7139081b8bd342a31377063c93d9c3d58cdd29 Mon Sep 17 00:00:00 2001 From: Edward Hope-Morley Date: Wed, 1 Jul 2026 22:47:27 +0100 Subject: [PATCH] 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 c47654dfeb2343b92254af666cb026e6b4d1a10f) --- zaza/openstack/utilities/openstack.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zaza/openstack/utilities/openstack.py b/zaza/openstack/utilities/openstack.py index 46c9ed276..67bbda2dd 100644 --- a/zaza/openstack/utilities/openstack.py +++ b/zaza/openstack/utilities/openstack.py @@ -1042,6 +1042,7 @@ def create_additional_port_for_machines(novaclient, neutronclient, net_id, "name": ext_port_name, "network_id": net_id, "port_security_enabled": False, + "fixed_ips": [], } } port = neutronclient.create_port(body=body_value)