system-config/modules/openstack_project/manifests/bare_slave.pp
Monty Taylor f6ae3e6b7b Use puppetmaster for slaves.
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
2012-08-19 18:02:37 +00:00

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
}
}