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:
Alfredo Moralejo
2017-09-22 14:17:09 +02:00
parent ab1ac2888e
commit b0fbda8ace
3 changed files with 5 additions and 5 deletions

View File

@@ -98,6 +98,6 @@ def create_manifest(config, messages):
fw_details[key]['host'] = "ALL"
fw_details[key]['service_name'] = "panko-api"
fw_details[key]['chain'] = "INPUT"
fw_details[key]['ports'] = ['8779']
fw_details[key]['ports'] = ['8977']
fw_details[key]['proto'] = "tcp"
config['FIREWALL_PANKO_RULES'] = fw_details

View File

@@ -34,7 +34,7 @@ class packstack::apache ()
if hiera('CONFIG_PANKO_INSTALL') == 'y' {
# Panko port
apache::listen { '8779': }
apache::listen { '8977': }
}
}

View File

@@ -5,8 +5,8 @@ class packstack::keystone::panko ()
class { '::panko::keystone::auth':
region => hiera('CONFIG_KEYSTONE_REGION'),
password => hiera('CONFIG_PANKO_KS_PW'),
public_url => "http://${keystone_host_url}:8779",
admin_url => "http://${keystone_host_url}:8779",
internal_url => "http://${keystone_host_url}:8779",
public_url => "http://${keystone_host_url}:8977",
admin_url => "http://${keystone_host_url}:8977",
internal_url => "http://${keystone_host_url}:8977",
}
}