Puppet Class: profile::noc
- Defined in:
- modules/profile/manifests/noc.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'modules/profile/manifests/noc.pp', line 2
class profile::noc {
include profile::mediawiki::common
# http from envoy to httpd on the backend itself
ferm::service { 'noc-http-envoy':
proto => 'tcp',
port => 'http',
srange => "(${::ipaddress} ${::ipaddress6})",
}
# http from cumin masters
ferm::service { 'noc-http-cumin':
proto => 'tcp',
port => 'http',
srange => '($CUMIN_MASTERS)',
}
class { '::noc': }
}
|