Initial support for deploying from git

This commit is contained in:
Corey Bryant
2015-03-08 10:52:40 +00:00
parent 0b2933c5a1
commit c8885bba2a
9 changed files with 296 additions and 4 deletions

View File

@@ -61,7 +61,11 @@ class NeutronOVSBasicDeployment(OpenStackAmuletDeployment):
def _configure_services(self):
"""Configure all of the services."""
configs = {}
neutron_ovs_config = {'openstack-origin-git':
"{'neutron':"
" {'repository': 'git://git.openstack.org/openstack/neutron.git',"
" 'branch': 'stable/icehouse'}}"}
configs = {'neutron-openvswitch': neutron_ovs_config}
super(NeutronOVSBasicDeployment, self)._configure_services(configs)
def _initialize_tests(self):