Skip to content

Commit

Permalink
Merge "Add icehouse testbed files for ui sanity" into R1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and Gerrit Code Review committed Sep 22, 2014
2 parents 731b857 + e21fd4e commit 1f70bc1
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
38 changes: 38 additions & 0 deletions fabfile/testbeds/testbed_icehouse_centos_1_node_webui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
from fabric.api import env

os_username = 'admin'
os_password = 'contrail123'
os_tenant_name = 'demo'
multi_tenancy = False
webui = "firefox"
webui_config = True
host1='root@10.204.217.64'
ext_routers = []
router_asn = 64512
public_vn_rtgt = 10000
public_vn_subnet = "10.84.41.0/24"
host_build = 'stack@10.204.216.49'
env.roledefs = {
'all': [host1],
'cfgm': [host1],
'openstack':[host1],
'collector': [host1],
'webui': [host1],
'control': [host1],
'compute': [host1],
'database': [host1],
'build': [host_build],
}
env.hostnames = {
'all': ['nodeg24']
}

env.passwords = {
host1: 'c0ntrail123',
host_build: 'c0ntrail123',
}

env.test_repo_dir='/home/stack/webui_centos_single_node/icehouse/contrail-test'
env.mail_from='ankitja@juniper.net'
env.mail_to='dl-contrail-sw@juniper.net'
env.log_scenario='CentOS-Icehouse Single-Node Webui Sanity'
41 changes: 41 additions & 0 deletions fabfile/testbeds/testbed_icehouse_ubuntu_1_node_webui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
from fabric.api import env

os_username = 'admin'
os_password = 'contrail123'
os_tenant_name = 'demo'
multi_tenancy = False
webui = "firefox"
webui_config = True
host1='root@10.204.217.64'
ext_routers = []
router_asn = 64512
public_vn_rtgt = 10000
public_vn_subnet = "10.84.41.0/24"
host_build = 'stack@10.204.216.49'
env.roledefs = {
'all': [host1],
'cfgm': [host1],
'openstack':[host1],
'collector': [host1],
'webui': [host1],
'control': [host1],
'compute': [host1],
'database': [host1],
'build': [host_build],
}
env.hostnames = {
'all': ['nodeg24']
}
env.ostypes = {
host1: 'ubuntu'
}

env.passwords = {
host1: 'c0ntrail123',
host_build: 'c0ntrail123',
}

env.test_repo_dir='/home/stack/webui_ubuntu_single_node/icehouse/contrail-test'
env.mail_from='ankitja@juniper.net'
env.mail_to='dl-contrail-sw@juniper.net'
env.log_scenario='Ubuntu-Icehouse Single-Node Webui Sanity'

0 comments on commit 1f70bc1

Please sign in to comment.