
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
24 lines
563 B
Puppet
24 lines
563 B
Puppet
# == Class: openstack_project::slave
|
|
#
|
|
class openstack_project::slave (
|
|
$bare = false,
|
|
$certname = $::fqdn,
|
|
$sysadmins = []
|
|
) {
|
|
include openstack_project
|
|
include tmpreaper
|
|
include unattended_upgrades
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [],
|
|
certname => $certname,
|
|
sysadmins => $sysadmins,
|
|
}
|
|
class { 'jenkins::slave':
|
|
bare => $bare,
|
|
ssh_key => $openstack_project::jenkins_ssh_key,
|
|
}
|
|
class { 'salt':
|
|
salt_master => 'ci-puppetmaster.openstack.org',
|
|
}
|
|
}
|