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
|
# File 'modules/role/manifests/thumbor/mediawiki.pp', line 6
class role::thumbor::mediawiki {
system::role { 'thumbor::mediawiki':
description => 'Thumbnailing server based on Thumbor',
}
include ::profile::base::production
include ::profile::base::firewall
include ::mediawiki::packages::fonts
include ::profile::prometheus::haproxy_exporter
include ::profile::prometheus::nutcracker_exporter
include ::profile::thumbor
include ::lvs::realserver
include ::threedtopng::deploy
include ::profile::prometheus::memcached_exporter
class { '::profile::statsite':
ensure => absent,
}
class { '::memcached':
size => 100,
port => 11211,
# TODO: the following were implicit defaults from
# MW settings, need to be reviewed.
growth_factor => 1.05,
min_slab_size => 5,
}
class {'::imagemagick::install': }
class { '::profile::prometheus::statsd_exporter':
relay_address => '',
}
}
|