Fix panko ssl port

Panko ssl port should be 13977 as defined in puppet tripleo
haproxy resource. Due to this we have a mismatch
and undercloud events fail to work.

Closes-bug: #1732459

Change-Id: I7d01af154cc9e13a30107e810cbaf951fb751f1c
This commit is contained in:
Pradeep Kilambi 2017-11-15 09:06:54 -05:00
parent f4721afb34
commit 96df8b1240
3 changed files with 6 additions and 2 deletions

View File

@ -1008,4 +1008,4 @@ tripleo::firewall::firewall_rules:
'143 panko-api':
dport:
- 8977
- 13779
- 13977

View File

@ -904,7 +904,7 @@ def _generate_endpoints(instack_env):
{'host': internal_host, 'port': 8041}),
('panko',
'%s://%s:%d',
{'host': public_host, 'port': 8977, 'ssl_port': 13779},
{'host': public_host, 'port': 8977, 'ssl_port': 13977},
{'host': internal_host, 'port': 8977}),
('mistral',
'%s://%s:%d/v2',

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Fix panko ssl port to match puppet-tripleo haproxy resource.