f8f2915020
Once our gate-ci-puppet-lint job goes live, this will help to get it to pass. Change-Id: I2eb363038b8e63e4b17a3f80cc40dc6c6bf90bee Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com> Reviewed-on: https://review.openstack.org/13722 Reviewed-by: James E. Blair <corvus@inaugust.com> Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
19 lines
444 B
Puppet
19 lines
444 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(
|
|
$certname = $::fqdn,
|
|
$install_users = true
|
|
) {
|
|
class { 'openstack_project::base':
|
|
certname => $certname,
|
|
install_users => $install_users,
|
|
}
|
|
|
|
class { 'jenkins::slave':
|
|
ssh_key => '',
|
|
user => false
|
|
}
|
|
}
|
|
|
|
# vim:sw=2:ts=2:expandtab:textwidth=79
|