Merge "Port for distributed serialization added"

This commit is contained in:
Jenkins 2017-03-24 10:06:13 +00:00 committed by Gerrit Code Review
commit 6f542cc866
2 changed files with 31 additions and 19 deletions

View File

@ -9,6 +9,7 @@ class fuel::iptables (
$ssh_rhitcount = 4,
$nailgun_web_port = $::fuel::params::nailgun_port,
$nailgun_internal_port = $::fuel::params::nailgun_internal_port,
$nailgun_serialization_port = $::fuel::params::nailgun_serialization_port,
$nailgun_repo_port = $::fuel::params::repo_port,
$postgres_port = $::fuel::params::db_port,
$ostf_port = $::fuel::params::ostf_port,
@ -185,6 +186,16 @@ class fuel::iptables (
state => ['NEW'],
}
firewall { '065 nailgun_serialization_port':
chain => $chain,
table => 'filter',
dport => $nailgun_serialization_port,
proto => 'tcp',
iniface => $admin_iface,
action => 'accept',
state => ['NEW'],
}
firewall { '070 nailgun_internal_block_ext':
chain => $chain,
table => 'filter',

View File

@ -120,6 +120,7 @@ class fuel::params {
$nailgun_host = '127.0.0.1'
$nailgun_port = '8000'
$nailgun_internal_port = '8001'
$nailgun_serialization_port = '8002'
$nailgun_ssl_port = '8443'
$ostf_host = '127.0.0.1'