From: Cédric Ollivier Date: Mon, 5 Nov 2018 19:18:35 +0000 (+0100) Subject: Set MTU=1442 in ansible_utils_tests.py X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F15%2F64515%2F1;p=snaps.git Set MTU=1442 in ansible_utils_tests.py 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 --- 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)