Replace deprecated configdrive_use_swift

Change-Id: I987444c22d3a4d17db902e0d3b35031187f9cbcb
This commit is contained in:
Takashi Kajinami 2020-05-01 19:03:08 +09:00
parent b1ea700ba8
commit 73d39c09c1
3 changed files with 28 additions and 8 deletions

View File

@ -89,14 +89,14 @@
# inspection_network_name.
# Defaults to $::os_service_default
#
# [*configdrive_use_swift*]
# (optional) Whether to use Swift for storing config drives instead of
# [*configdrive_use_object_store*]
# (optional) Whether to use object store for storing config drives instead of
# the database. Recommended for bigger config drives.
# Defaults to $::os_service_default
#
# [*configdrive_swift_container*]
# (optinal) Swift container to use for storing config drives if
# configdrive_use_swift is true.
# configdrive_use_object_store is true.
# Defaults to $::os_service_default
#
# [*inspect_timeout*]
@ -204,6 +204,11 @@
# (optional) Ironic API URL.
# Defaults to undef.
#
# [*configdrive_use_swift*]
# (optional) Whether to use Swift for storing config drives instead of
# the database. Recommended for bigger config drives.
# Defaults to undef
#
class ironic::conductor (
$package_ensure = 'present',
$enabled = true,
@ -219,7 +224,7 @@ class ironic::conductor (
$provisioning_network = $::os_service_default,
$rescuing_network = $::os_service_default,
$inspection_network = $::os_service_default,
$configdrive_use_swift = $::os_service_default,
$configdrive_use_object_store = $::os_service_default,
$configdrive_swift_container = $::os_service_default,
$inspect_timeout = $::os_service_default,
$default_boot_option = $::os_service_default,
@ -242,6 +247,7 @@ class ironic::conductor (
# DEPRECATED PARAMETERS
$max_time_interval = undef,
$api_url = undef,
$configdrive_use_swift = undef,
) {
include ironic::deps
@ -262,6 +268,14 @@ Use ironic::service_catalog::endpoint_override instead')
}
}
if $configdrive_use_swift != undef {
warning('configdrive_use_swift is deprecated and will be removed \
in a future release. Use configdrive_use_object_store instead')
$configdrive_use_object_store_real = $configdrive_use_swift
} else {
$configdrive_use_object_store_real = $configdrive_use_object_store
}
if ($cleaning_network_name and !is_service_default($cleaning_network)) {
fail('cleaning_network_name and cleaning_network can not be specified at the same time.')
}
@ -330,7 +344,7 @@ Use ironic::service_catalog::endpoint_override instead')
'deploy/erase_devices_priority': value => $erase_devices_priority;
'deploy/erase_devices_metadata_priority': value => $erase_devices_metadata_priority;
'deploy/continue_if_disk_secure_erase_fails': value => $continue_if_disk_secure_erase_fails;
'conductor/configdrive_use_swift': value => $configdrive_use_swift;
'deploy/configdrive_use_object_store': value => $configdrive_use_object_store_real;
'conductor/configdrive_swift_container': value => $configdrive_swift_container;
'conductor/inspect_wait_timeout': value => $inspect_timeout;
'deploy/default_boot_option': value => $default_boot_option;

View File

@ -0,0 +1,6 @@
---
deprecations:
- |
The ``ironic::conductor:configdrive_use_swift`` parameter has been
deprecated and will be removed in a future release. Use
``configdrive_use_object_store`` instead.

View File

@ -72,7 +72,7 @@ describe 'ironic::conductor' do
is_expected.to contain_ironic_config('deploy/http_url').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('deploy/http_root').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('DEFAULT/force_raw_images').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('conductor/configdrive_use_swift').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('deploy/configdrive_use_object_store').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('conductor/configdrive_swift_container').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('conductor/inspect_wait_timeout').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('deploy/default_boot_option').with(:value => '<SERVICE DEFAULT>')
@ -100,7 +100,7 @@ describe 'ironic::conductor' do
:http_url => 'http://host:port',
:http_root => '/src/www',
:force_raw_images => false,
:configdrive_use_swift => true,
:configdrive_use_object_store => true,
:configdrive_swift_container => 'cont',
:inspect_timeout => 600,
:default_boot_option => 'local',
@ -132,7 +132,7 @@ describe 'ironic::conductor' do
is_expected.to contain_ironic_config('deploy/http_url').with_value(p[:http_url])
is_expected.to contain_ironic_config('deploy/http_root').with_value(p[:http_root])
is_expected.to contain_ironic_config('DEFAULT/force_raw_images').with_value(p[:force_raw_images])
is_expected.to contain_ironic_config('conductor/configdrive_use_swift').with_value(p[:configdrive_use_swift])
is_expected.to contain_ironic_config('deploy/configdrive_use_object_store').with_value(p[:configdrive_use_object_store])
is_expected.to contain_ironic_config('conductor/configdrive_swift_container').with_value(p[:configdrive_swift_container])
is_expected.to contain_ironic_config('conductor/inspect_wait_timeout').with_value(p[:inspect_timeout])
is_expected.to contain_ironic_config('deploy/default_boot_option').with_value(p[:default_boot_option])