Stop setting floating_ips in tempest_conf.yaml 19/71619/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Fri, 4 Dec 2020 12:01:32 +0000 (13:01 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Fri, 4 Dec 2020 12:02:22 +0000 (13:02 +0100)
It's now handled by tempest.py

Change-Id: Iaeefd70f95a3c64c7ca41b984e934c4aeadea8ab
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
docker/smoke-cntt/tempest_conf.yaml
functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml
functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf_ovn.yaml
functest/opnfv_tests/openstack/tempest/tempest.py

index 1e5579f..cb30ab9 100644 (file)
@@ -54,7 +54,6 @@ image-feature-enabled:
 network-feature-enabled:
     port_admin_state_change: true
     port_security: true
-    floating_ips: true
 placement:
     max_microversion: 1.36
 validation:
index b9ba22e..25ffe50 100644 (file)
@@ -54,7 +54,6 @@ image-feature-enabled:
 network-feature-enabled:
     port_admin_state_change: true
     port_security: true
-    floating_ips: true
 placement:
     max_microversion: latest
 validation:
index 3abc494..ab82b87 100644 (file)
@@ -54,7 +54,6 @@ image-feature-enabled:
 network-feature-enabled:
     port_admin_state_change: true
     port_security: true
-    floating_ips: true
 placement:
     max_microversion: latest
 validation:
index ed3c476..c1c6b89 100644 (file)
@@ -507,6 +507,7 @@ class TempestCommon(singlevm.VmReady2):
                 rconfig.add_section('network')
             rconfig.set('network', 'public_network_id', self.ext_net.id)
             rconfig.set('network', 'floating_network_name', self.ext_net.name)
+            rconfig.set('network-feature-enabled', 'floating_ips', True)
         else:
             if not rconfig.has_section('network-feature-enabled'):
                 rconfig.add_section('network-feature-enabled')