diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2015-05-11 17:09:30 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2015-05-12 00:28:05 +0200 |
commit | 2fd26619377c18b691627d918fa29b10f1e6ec89 (patch) | |
tree | 6ea9ceab2d19eab6da3a5b63da71ac76df365732 /testcases/functest.yaml | |
parent | 976ee973affafe57bb7d498c77feacdcc6749433 (diff) |
config_functest.py:
1) Added create public network.
2) functest.yaml is now copied instead of downloaded.
JIRA: FUNCTEST-10
Change-Id: Ia79cc304d4c607a8fe1fd4e02e78658b7719bf23
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/functest.yaml')
-rw-r--r-- | testcases/functest.yaml | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/testcases/functest.yaml b/testcases/functest.yaml index 2f3494997..cee07fcad 100644 --- a/testcases/functest.yaml +++ b/testcases/functest.yaml @@ -13,15 +13,21 @@ general: image_name: Ubuntu14.04 image_url: https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img image_disk_format: raw - #Public network. Must exist already. + #Public network. Will be created by config_functest.py + #It must be reachable from where the tests are ran + #For Fuel deployment, it exists already and its called net04_ext neutron_public_net_name: net04_ext + neutron_public_subnet_name: net04_ext__subnet + neutron_public_subnet_cidr: 172.16.9.0/24 + neutron_public_subnet_start: 172.16.9.130 + neutron_public_subnet_end: 172.16.9.254 #Private network for functest. Will be created by config_functest.py - neutron_net_name: functest-net - neutron_subnet_name: functest-subnet - neutron_subnet_range: 192.168.120.0/24 - neutron_subnet_start: 192.168.120.2 - neutron_subnet_end: 192.168.120.254 - neutron_subnet_gateway: 192.168.120.254 + neutron_private_net_name: functest-net + neutron_private_subnet_name: functest-subnet + neutron_private_subnet_cidr: 192.168.120.0/24 + neutron_private_subnet_start: 192.168.120.2 + neutron_private_subnet_end: 192.168.120.254 + neutron_private_subnet_gateway: 192.168.120.254 neutron_router_name: functest-router vping: ping_timeout: 200 |