Set MTU=1442 in ansible_utils_tests.py 15/64515/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Mon, 5 Nov 2018 19:18:35 +0000 (20:18 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 5 Nov 2018 19:24:49 +0000 (20:24 +0100)
The former MTU (1450) is fine for VXLAN but reducing it to 1442
allows GENEVE tunneled networks.

Else snaps_smoke fails when verifying OVN [1].

[1] https://artifacts.opnfv.org/logs/functest/lf-pod1/gambia/2018-11-05_11-43-15/functest.log

Change-Id: Icf38c30837858f59ed25f443245fee0007e9354d
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
snaps/provisioning/tests/ansible_utils_tests.py

index 33e8edd..b6ace31 100644 (file)
@@ -91,7 +91,7 @@ class AnsibleProvisioningTests(OSIntegrationTestCase):
             self.pub_net_config = openstack_tests.get_pub_net_config(
                 project_name=self.os_creds.project_name,
                 net_name=guid + '-pub-net',
-                mtu=1450, subnet_name=guid + '-pub-subnet',
+                mtu=1442, subnet_name=guid + '-pub-subnet',
                 router_name=guid + '-pub-router',
                 external_net=self.ext_net_name)