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
16 lines
358 B
Puppet
16 lines
358 B
Puppet
class openstack_project::slave_template(
|
|
$install_users=true,
|
|
$ssh_key=$openstack_project::jenkins_ssh_key
|
|
) {
|
|
include openstack_project
|
|
class { 'openstack_project::template':
|
|
iptables_public_tcp_ports => [],
|
|
install_users => $install_users,
|
|
}
|
|
class { 'jenkins::slave':
|
|
ssh_key => $ssh_key,
|
|
sudo => true,
|
|
bare => true
|
|
}
|
|
}
|