Fix the port for Panko API

The port used for Panko is conflicts with Trove[1]. According to
the official documentation[2] this should be 8777. The 8777 port
has been occupied by ceilometer. So set the panko api port to 8977.

[1]https://github.com/openstack/trove/blob/master/etc/apache2/trove#L20
[2]https://docs.openstack.org/developer/panko/install/manual.html#installing-the-api-server

Change-Id: I3f07bb823f409c9dbf03b3ee2f82c5bb1f35fd20
Closes-Bug: #1691283
Depends-On: I53b286d1d6466b574fdb286cc45f3138f96dff59
This commit is contained in:
ZhongShengping 2017-06-07 11:58:44 +08:00
parent d1d42fc0c7
commit ead742e169
2 changed files with 3 additions and 3 deletions

View File

@ -973,5 +973,5 @@ tripleo::firewall::firewall_rules:
- 443
'143 panko-api':
dport:
- 8779
- 8977
- 13779

View File

@ -849,8 +849,8 @@ def _generate_endpoints(instack_env):
{'host': internal_host, 'port': 8041}),
('panko',
'%s://%s:%d',
{'host': public_host, 'port': 8779, 'ssl_port': 13779},
{'host': internal_host, 'port': 8779}),
{'host': public_host, 'port': 8977, 'ssl_port': 13779},
{'host': internal_host, 'port': 8977}),
('mistral',
'%s://%s:%d/v2',
{'host': public_host, 'port': 8989, 'ssl_port': 13989},