From 7c8b405bc02d5b489beb359f86ba57c831648897 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 5 Nov 2018 20:18:35 +0100 Subject: Set MTU=1442 in ansible_utils_tests.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- snaps/provisioning/tests/ansible_utils_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snaps/provisioning/tests/ansible_utils_tests.py b/snaps/provisioning/tests/ansible_utils_tests.py index 33e8edd..b6ace31 100644 --- a/snaps/provisioning/tests/ansible_utils_tests.py +++ b/snaps/provisioning/tests/ansible_utils_tests.py @@ -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) -- cgit 1.2.3-korg