Move panko to port 8977
Port 8779 is used by trove, and port has been changed
to 8977 by default both in devstack and in puppet-panko [1]
[1] https://review.openstack.org/#/c/471551/
Change-Id: I1522e69b719324d60a0df31747e0c1bfb354bbaa
(cherry picked from commit b5aa20953c)
This commit is contained in:
@@ -98,6 +98,6 @@ def create_manifest(config, messages):
|
|||||||
fw_details[key]['host'] = "ALL"
|
fw_details[key]['host'] = "ALL"
|
||||||
fw_details[key]['service_name'] = "panko-api"
|
fw_details[key]['service_name'] = "panko-api"
|
||||||
fw_details[key]['chain'] = "INPUT"
|
fw_details[key]['chain'] = "INPUT"
|
||||||
fw_details[key]['ports'] = ['8779']
|
fw_details[key]['ports'] = ['8977']
|
||||||
fw_details[key]['proto'] = "tcp"
|
fw_details[key]['proto'] = "tcp"
|
||||||
config['FIREWALL_PANKO_RULES'] = fw_details
|
config['FIREWALL_PANKO_RULES'] = fw_details
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ class packstack::apache ()
|
|||||||
|
|
||||||
if hiera('CONFIG_PANKO_INSTALL') == 'y' {
|
if hiera('CONFIG_PANKO_INSTALL') == 'y' {
|
||||||
# Panko port
|
# Panko port
|
||||||
apache::listen { '8779': }
|
apache::listen { '8977': }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ class packstack::keystone::panko ()
|
|||||||
class { '::panko::keystone::auth':
|
class { '::panko::keystone::auth':
|
||||||
region => hiera('CONFIG_KEYSTONE_REGION'),
|
region => hiera('CONFIG_KEYSTONE_REGION'),
|
||||||
password => hiera('CONFIG_PANKO_KS_PW'),
|
password => hiera('CONFIG_PANKO_KS_PW'),
|
||||||
public_url => "http://${keystone_host_url}:8779",
|
public_url => "http://${keystone_host_url}:8977",
|
||||||
admin_url => "http://${keystone_host_url}:8779",
|
admin_url => "http://${keystone_host_url}:8977",
|
||||||
internal_url => "http://${keystone_host_url}:8779",
|
internal_url => "http://${keystone_host_url}:8977",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user