Merge "Deprecated log_bmc_address option"
This commit is contained in:
commit
805dbca194
@ -202,7 +202,6 @@ function configure_inspector {
|
||||
mkdir_chown_stack "$IRONIC_INSPECTOR_RAMDISK_LOGDIR"
|
||||
inspector_iniset processing ramdisk_logs_dir "$IRONIC_INSPECTOR_RAMDISK_LOGDIR"
|
||||
inspector_iniset processing always_store_ramdisk_logs "$IRONIC_INSPECTOR_ALWAYS_STORE_RAMDISK_LOGS"
|
||||
inspector_iniset processing log_bmc_address False
|
||||
if [ -n "$IRONIC_INSPECTOR_NODE_NOT_FOUND_HOOK" ]; then
|
||||
inspector_iniset processing node_not_found_hook "$IRONIC_INSPECTOR_NODE_NOT_FOUND_HOOK"
|
||||
fi
|
||||
|
@ -848,8 +848,10 @@
|
||||
# local_gb is calculated on the ramdisk side. (boolean value)
|
||||
#disk_partitioning_spacing = true
|
||||
|
||||
# Whether to log node BMC address with every message during
|
||||
# processing. (boolean value)
|
||||
# DEPRECATED: Whether to log node BMC address with every message
|
||||
# during processing. (boolean value)
|
||||
# This option is deprecated for removal.
|
||||
# Its value may be silently ignored in the future.
|
||||
#log_bmc_address = true
|
||||
|
||||
# File name template for storing ramdisk logs. The following
|
||||
|
@ -129,7 +129,8 @@ PROCESSING_OPTS = [
|
||||
cfg.BoolOpt('log_bmc_address',
|
||||
default=True,
|
||||
help=_('Whether to log node BMC address with every message '
|
||||
'during processing.')),
|
||||
'during processing.'),
|
||||
deprecated_for_removal=True),
|
||||
cfg.StrOpt('ramdisk_logs_filename_format',
|
||||
default='{uuid}_{dt:%Y%m%d-%H%M%S.%f}.tar.gz',
|
||||
help=_('File name template for storing ramdisk logs. The '
|
||||
|
@ -0,0 +1,4 @@
|
||||
---
|
||||
deprecations:
|
||||
- |
|
||||
The configuration option "log_bmc_address" is deprecated.
|
Loading…
Reference in New Issue
Block a user