From: Cédric Ollivier Date: Fri, 20 Jul 2018 11:31:50 +0000 (+0200) Subject: Minor change about subnet pool X-Git-Tag: opnfv-7.0.0~176 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F47%2F60047%2F1;p=functest.git Minor change about subnet pool It reverts the subnet pool to 192.168.120.0/24. It avoids conflicts with default CPE private subnets. It also increases cloudify spawning timeout. Change-Id: I70183cede0690c2cbc74f9c30a38892d829db2c9 Signed-off-by: Cédric Ollivier --- diff --git a/functest/core/cloudify.py b/functest/core/cloudify.py index 655c5f5be..3bb630d80 100644 --- a/functest/core/cloudify.py +++ b/functest/core/cloudify.py @@ -31,7 +31,7 @@ class Cloudify(singlevm.SingleVm2): flavor_disk = 50 username = 'centos' ssh_connect_loops = 12 - create_server_timeout = 240 + create_server_timeout = 300 ports = [80, 443, 5671, 53333] def __init__(self, **kwargs): diff --git a/functest/core/tenantnetwork.py b/functest/core/tenantnetwork.py index fdf0ab132..b118893de 100644 --- a/functest/core/tenantnetwork.py +++ b/functest/core/tenantnetwork.py @@ -122,7 +122,7 @@ class TenantNetwork1(testcase.TestCase): """ __logger = logging.getLogger(__name__) - cidr = '192.168.0.0/24' + cidr = '192.168.120.0/24' shared_network = False def __init__(self, **kwargs):