Puppet Class: profile::cumin::target
- Defined in:
- modules/profile/manifests/cumin/target.pp
Overview
Parameters here are just a hotfix to the issue of not being able to select by cluster/role/site easily, and also allows to add arbitrary tags to single servers or classes of servers. Note that once the role/profile transition is complete, we should not need those anymore.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'modules/profile/manifests/cumin/target.pp', line 6
class profile::cumin::target(
String $cluster = lookup('cluster'),
String $site = $::site,
Array[Stdlib::IP::Address] $cumin_masters = lookup('cumin_masters', {'default_value' => []}),
) {
if defined('$::_role') {
$roles = [regsubst($::_role, '/', '::', 'G')]
} else {
$roles = []
}
tag $roles
require ::network::constants
# Include cumin::selector on all cumin targets so that
# the get_clusters puppet function will get results when calling
# query_resources.
class { '::cumin::selector':
cluster => $cluster,
site => $site,
}
$ssh_authorized_sources = join($cumin_masters, ',')
$cumin_master_pub_key = secret('keyholder/cumin_master.pub')
ssh::userkey { 'root-cumin':
ensure => present,
user => 'root',
skey => 'cumin',
content => template('profile/cumin/userkey.erb'),
}
# Wrapper used by cumin to reboot hosts without losing the ssh connection
file { '/usr/local/sbin/reboot-host':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0550',
source => 'puppet:///modules/cumin/reboot-host',
}
}
|