From e823d5950545689fc95be95f1530665033df1842 Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Wed, 7 Jun 2017 11:14:17 +0800 Subject: [PATCH] Fix the port for Panko API The port used for Panko in the puppet module 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: Ifbfe83833494495c4372dd09bdf704e037256643 Releated-Bug: #1691283 Depends-On: I53b286d1d6466b574fdb286cc45f3138f96dff59 --- manifests/panko.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/panko.pp b/manifests/panko.pp index fbc58623c..2274176aa 100644 --- a/manifests/panko.pp +++ b/manifests/panko.pp @@ -35,9 +35,9 @@ class openstack_integration::panko { password => 'panko', } class { '::panko::keystone::auth': - public_url => "${::openstack_integration::config::base_url}:8779", - internal_url => "${::openstack_integration::config::base_url}:8779", - admin_url => "${::openstack_integration::config::base_url}:8779", + public_url => "${::openstack_integration::config::base_url}:8977", + internal_url => "${::openstack_integration::config::base_url}:8977", + admin_url => "${::openstack_integration::config::base_url}:8977", password => 'a_big_secret', } class { '::panko::keystone::authtoken':