Glance: Remove ineffective parameters

The following two parameters have been implemented in the glance-api
service resource but the hieradata key set by these two parameters
have never been used actually.
 - GlanceNotifierStrategy
 - GlanceLogFile

Because the parameters have been "broken" for multiple cycles, this
change removes these parameters directly.

Change-Id: I03eec4e1ef5fe47d398eaeeedf8005a4072677b1
This commit is contained in:
Takashi Kajinami 2022-06-24 14:39:01 +09:00
parent 8cb7c81d20
commit 8f147c914c
2 changed files with 6 additions and 10 deletions

View File

@ -221,14 +221,6 @@ parameters:
EnableInternalTLS:
type: boolean
default: false
GlanceNotifierStrategy:
description: Strategy to use for Glance notification queue
type: string
default: noop
GlanceLogFile:
description: The filepath of the file to use for logging messages from Glance.
type: string
default: ''
GlanceBackend:
default: swift
description: The short name of the Glance backend to use. Should be one
@ -581,8 +573,6 @@ outputs:
"%{lookup('$NETWORK')}"
params:
$NETWORK: {get_param: [ServiceNetMap, GlanceApiNetwork]}
glance_notifier_strategy: {get_param: GlanceNotifierStrategy}
glance_log_file: {get_param: GlanceLogFile}
glance::backend::rbd::rbd_thin_provisioning: {get_param: GlanceSparseUploadEnabled}
glance::backend::file::filesystem_thin_provisioning: {get_param: GlanceSparseUploadEnabled}
glance::backend::swift::swift_store_auth_address: {get_param: [EndpointMap, KeystoneV3Internal, uri] }

View File

@ -0,0 +1,6 @@
---
upgrade:
- |
The ``GlanceNotifierStrategy`` parameter and the ``GlanceLogFile``
parameter have been removed. These two parameters have had no effect
for several cycles.