f6ae3e6b7b
Use puppet agent --test for puppet cron. We don't need the private ssh or gpg key on the slaves anymore. We do need the glance testing stuff, so stick that into hiera. Change-Id: If94fc3f150bf569efe9461f80d3565f9825eebce Reviewed-on: https://review.openstack.org/10851 Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
16 lines
389 B
Puppet
16 lines
389 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,
|
|
$certname=$fqdn) {
|
|
class { 'openstack_project::base':
|
|
install_users => $install_users,
|
|
certname => $certname,
|
|
}
|
|
|
|
class { 'jenkins::slave':
|
|
ssh_key => "",
|
|
user => false
|
|
}
|
|
}
|