39fc1d5072
Change-Id: Ibcc8456da4d3fa3beb94173e571a5da071b6fa15 Reviewed-on: https://review.openstack.org/11628 Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
17 lines
328 B
Puppet
17 lines
328 B
Puppet
class openstack_project::slave(
|
|
$certname=$fqdn
|
|
) {
|
|
include openstack_project
|
|
include tmpreaper
|
|
include unattended_upgrades
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [],
|
|
certname => $certname,
|
|
}
|
|
class { 'jenkins::slave':
|
|
ssh_key => $openstack_project::jenkins_ssh_key
|
|
}
|
|
}
|
|
|
|
|