f31a426c65
Now with extra unwrap! Change-Id: I7c622ffa77821f33f911793fc6b6cdaaba37904a Reviewed-on: https://review.openstack.org/15052 Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: Jeremy Stanley <fungi@yuggoth.org> Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Tested-by: Jenkins
17 lines
427 B
Puppet
17 lines
427 B
Puppet
# == Class: openstack_project::slave_template
|
|
#
|
|
class openstack_project::slave_template (
|
|
$install_users = true,
|
|
$ssh_key = $openstack_project::jenkins_ssh_key
|
|
) inherits 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,
|
|
}
|
|
}
|