Puppet Class: role::phabricator
- Defined in:
- modules/role/manifests/phabricator.pp
Overview
phabricator instance
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'modules/role/manifests/phabricator.pp', line 3
class role::phabricator {
system::role { 'phabricator':
description => 'Phabricator (Main) Server'
}
include ::profile::base::production
include ::profile::base::firewall
include ::profile::backup::host
include ::profile::phabricator::main
include ::profile::phabricator::httpd
include ::profile::phabricator::monitoring
include ::profile::phabricator::performance
include ::profile::prometheus::apache_exporter
include ::profile::tlsproxy::envoy # TLS termination
include ::rsync::server # copy repo data between servers
if $::realm == 'production' {
include ::lvs::realserver
}
# in cloud, use a local db server
if $::realm == 'labs' {
include ::profile::mariadb::generic_server
}
}
|