diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2015-05-12 12:26:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-05-12 12:26:31 +0000 |
commit | 522e7a093b0c52f2ddca5f5334489bc1773a2ec3 (patch) | |
tree | 4627b71b398048779b7dc7bec490f4f741cd0cfe /testcases/functest.yaml | |
parent | eb66536e331c047f3633a20a4e2d6bd4241e1c90 (diff) | |
parent | 2fd26619377c18b691627d918fa29b10f1e6ec89 (diff) |
Merge "config_functest.py: 1) Added create public network. 2) functest.yaml is now copied instead of downloaded. JIRA: FUNCTEST-10"
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 |