James E. Blair 64494b078a Add a dedicated slave to launch devstack nodes.
So that we can take this load off of the jenkins master.

Change-Id: Id66efede75fab9977013e69f3415a53dc239b0ce
Reviewed-on: https://review.openstack.org/22379
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
2013-02-20 17:43:23 +00:00

16 lines
308 B
Puppet

# == Class: openstack_project::devstack_launch_slave
#
class openstack_project::devstack_launch_slave (
) {
class { 'openstack_project::slave':
bare => true,
}
package { ['python-novaclient', 'statsd', 'paramiko']:
ensure => latest,
provider => pip,
require => Class['pip'],
}
}