Clean up admin_endpoint

The parameter has been unused and was formally deprecated during Yoga
cycle[1].

[1] aeb2861b46

Change-Id: I20d6b10c254241f61ac560d703a885a30cf6e4c4
This commit is contained in:
Takashi Kajinami
2022-05-09 08:29:14 +09:00
parent 0fd586f63c
commit a6380e6186
2 changed files with 4 additions and 13 deletions

View File

@@ -314,14 +314,6 @@
#
# DEPRECATED PARAMETERS
#
# [*admin_endpoint*]
# (Optional) The base admin endpoint URL for keystone that are
# advertised to clients (NOTE: this does NOT affect how keystone listens
# for connections) (string value)
# If set to false, no admin_endpoint will be defined in keystone.conf.
# Sample value: 'http://localhost:5000/'
# Defaults to undef
#
# [*catalog_type*]
# (Optional) Type of catalog that keystone uses to store endpoints, services.
# This accepts sql or template.
@@ -426,7 +418,6 @@ class keystone(
$purge_config = false,
$amqp_durable_queues = $::os_service_default,
# DEPRECATED PARAMETERS
$admin_endpoint = undef,
$catalog_type = undef,
$log_dir = undef,
$log_file = undef,
@@ -485,10 +476,6 @@ class keystone(
warning('The keystone::log_file parameter is deprecated and has no effect.')
}
if $admin_endpoint != undef {
warning('The keystone::admin_endpoint parameter is deprecated. This parameter has no effect')
}
package { 'keystone':
ensure => $package_ensure,
name => $::keystone::params::package_name,

View File

@@ -0,0 +1,4 @@
---
upgrade:
- |
The ``keystone::admin_endpoint`` parameter has been removed.