e35a6e7c73
Put jenkins_master into jenkins::master and jenkins_job_builder into jenkins::job_builder and jenkins_slave into jenkins::slave. Change-Id: Icb0e3071894730c17d8f36f49e9d34979d9c568e Reviewed-on: https://review.openstack.org/11249 Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
13 lines
339 B
Puppet
13 lines
339 B
Puppet
# bare-bones slaves spun up by jclouds. Specifically need to not set ssh
|
|
# login limits, because it screws up jclouds provisioning
|
|
class openstack_project::bare_slave($install_users=true) {
|
|
class { 'openstack_project::base':
|
|
install_users => $install_users
|
|
}
|
|
|
|
class { 'jenkins::slave':
|
|
ssh_key => "",
|
|
user => false
|
|
}
|
|
}
|