bab9bb6b69
Create new directories: ceph config config-files filesystem kernel kernel/kernel-modules ldap logging strorage-drivers tools utilities virt Retire directories: connectivity core devtools support extended Delete two packages: tgt irqbalance Relocated packages: base/ dhcp initscripts libevent lighttpd linuxptp memcached net-snmp novnc ntp openssh pam procps sanlock shadow sudo systemd util-linux vim watchdog ceph/ python-cephclient config/ facter puppet-4.8.2 puppet-modules filesystem/ e2fsprogs nfs-utils nfscheck kernel/ kernel-std kernel-rt kernel/kernel-modules/ mlnx-ofa_kernel ldap/ nss-pam-ldapd openldap logging/ syslog-ng logrotate networking/ lldpd iproute mellanox python-ryu mlx4-config python/ python-2.7.5 python-django python-gunicorn python-setuptools python-smartpm python-voluptuous security/ shim-signed shim-unsigned tboot strorage-drivers/ python-3parclient python-lefthandclient virt/ cloud-init libvirt libvirt-python qemu tools/ storage-topology vm-topology utilities/ tis-extensions namespace-utils nova-utils update-motd Change-Id: I37ade764d873c701b35eac5881eb40412ba64a86 Story: 2002801 Task: 22687 Signed-off-by: Scott Little <scott.little@windriver.com>
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
From 0fb9013aa056db642457e93a20499fd9b46ba436 Mon Sep 17 00:00:00 2001
|
|
From: Kam Nasim <kam.nasim@windriver.com>
|
|
Date: Mon, 22 Jan 2018 11:18:08 -0500
|
|
Subject: [PATCH] CGTS-8701: Remove the Keystone-admin app
|
|
|
|
Following the Pike rebase, no services are using Identity V2 and
|
|
therefore we can shut off the Keystone admin port / app, as in Identity
|
|
V3 the public endpoint and admin endpoints both offer identical services
|
|
---
|
|
lib/puppet/provider/keystone.rb | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/puppet/provider/keystone.rb b/lib/puppet/provider/keystone.rb
|
|
index 8eb171d..3c310dc 100644
|
|
--- a/lib/puppet/provider/keystone.rb
|
|
+++ b/lib/puppet/provider/keystone.rb
|
|
@@ -171,12 +171,16 @@ class Puppet::Provider::Keystone < Puppet::Provider::Openstack
|
|
end
|
|
|
|
def self.get_admin_endpoint
|
|
+ # NOTE (knasim-wrs): As of the Pike rebase, the public port(5000)
|
|
+ # provides the same functionality as the admin port(35357). We
|
|
+ # shall therefore not deploy the keystone-admin app and return
|
|
+ # the public port
|
|
endpoint = nil
|
|
if keystone_file
|
|
if url = get_section('DEFAULT', 'admin_endpoint')
|
|
endpoint = url.chomp('/')
|
|
else
|
|
- admin_port = get_section('DEFAULT', 'admin_port') || '35357'
|
|
+ admin_port = get_section('DEFAULT', 'public_port') || '5000'
|
|
host = clean_host(get_section('DEFAULT', 'admin_bind_host'))
|
|
protocol = ssl? ? 'https' : 'http'
|
|
endpoint = "#{protocol}://#{host}:#{admin_port}"
|
|
--
|
|
1.8.3.1
|
|
|