summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-11-05 20:18:35 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-11-05 20:24:49 +0100
commit7c8b405bc02d5b489beb359f86ba57c831648897 (patch)
treebcfcc5160d30d8581820cde8a7d2aeb65f27b7ae
parent12bdf4134e0d627b96540f514d479600f73a8545 (diff)
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 <cedric.ollivier@orange.com>
-rw-r--r--snaps/provisioning/tests/ansible_utils_tests.py2
1 files changed, 1 insertions, 1 deletions
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)