Puppet Class: confd
- Defined in:
- modules/confd/manifests/init.pp
Overview
Class confd
Installs confd and (optionally) starts it via a base::service_unit define.
Parameters
- running
-
If true, the service will be ran. Default: true
- backend
-
The backend to use. Default: etcd
- node
-
If defined, the specific backend node to connect to in the host:port form. Default: undef
- srv_dns
-
The domain under which to perform a SRV query to discover the backend cluster. Default: $::domain
- scheme
-
Protocol (“http” or “https”). Default: https
- interval
-
Polling interval to etcd. If undefined, a direct watch will be executed (the default)
- monitor_files
-
Wether to monitor confd failures or not. Default: true
- prefix
-
A global prefix with respect to which confd will do all of its operations. Default: undef
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'modules/confd/manifests/init.pp', line 27
class confd(
Wmflib::Ensure $ensure = present,
Boolean $running = true,
String $backend = 'etcd',
Optional[String] $node = undef,
Stdlib::Fqdn $srv_dns = $facts['domain'],
String $scheme = 'https',
Integer $interval = 3,
Boolean $monitor_files = true,
Optional[String] $prefix = undef,
) {
package { 'confd':
ensure => $ensure,
}
if $running {
$params = { ensure => 'running'}
}
else {
$params = { ensure => 'stopped'}
}
base::service_unit { 'confd':
ensure => $ensure,
refresh => true,
systemd => systemd_template('confd'),
service_params => $params,
require => Package['confd'],
}
file { '/etc/confd':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0550',
}
file { '/etc/confd/conf.d':
ensure => directory,
recurse => true,
purge => true,
owner => 'root',
group => 'root',
mode => '0550',
before => Service['confd'],
}
file { '/etc/confd/templates':
ensure => directory,
recurse => true,
purge => true,
owner => 'root',
group => 'root',
mode => '0550',
before => Service['confd'],
}
file { '/usr/local/bin/confd-lint-wrap':
ensure => present,
owner => 'root',
group => 'root',
mode => '0555',
source => 'puppet:///modules/confd/confd-lint-wrap.py',
}
nrpe::plugin { 'check_confd_lint':
source => 'puppet:///modules/confd/check_confd_lint.sh';
}
# Any change to a service configuration or to a template should reload confd.
Confd::File <| |> ~> Service['confd']
nrpe::monitor_systemd_unit_state { 'confd':
require => Service['confd'],
}
# Log to a dedicated file
logrotate::conf { 'confd':
ensure => present,
source => 'puppet:///modules/confd/logrotate.conf',
}
rsyslog::conf { 'confd':
source => 'puppet:///modules/confd/rsyslog.conf',
priority => 20,
require => File['/etc/logrotate.d/confd'],
}
nrpe::plugin { 'check_confd_template':
source => 'puppet:///modules/confd/check_confd_template';
}
}
|