
The mdev_types_device_addresses_mapping parameter is superseded by the mdev_types parameter. Change-Id: I714109bb2bc567a3b748c8528bfa8a40987ef9bb
54 lines
1.5 KiB
Puppet
54 lines
1.5 KiB
Puppet
# Class nova::compute::mdev
|
|
#
|
|
# Configures nova compute mdev options
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*mdev_types*]
|
|
# (Optional) A hash to define the nova::compute::mdev_type resources.
|
|
# Defaults to {}
|
|
#
|
|
# DEPRECATED PARAMETERS
|
|
#
|
|
# [*mdev_types_device_addresses_mapping*]
|
|
# (Optional) Map of mdev type(s) the instances can get as key and list of
|
|
# corresponding device addresses as value.
|
|
# Defaults to undef
|
|
#
|
|
class nova::compute::mdev(
|
|
$mdev_types = {},
|
|
# DEPRECATED PARAMETERS
|
|
$mdev_types_device_addresses_mapping = undef,
|
|
) {
|
|
include nova::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $mdev_types)
|
|
if $mdev_types_device_addresses_mapping != undef {
|
|
warning('mdev_types_device_addresses_mapping is deprecated. Use mdev_types.')
|
|
validate_legacy(Hash, 'validate_hash', $mdev_types_device_addresses_mapping)
|
|
}
|
|
|
|
$dev_addr_mapping_real = pick_default($mdev_types_device_addresses_mapping, {})
|
|
|
|
if !empty($dev_addr_mapping_real) {
|
|
nova_config {
|
|
'devices/enabled_mdev_types': value => join(keys($dev_addr_mapping_real), ',');
|
|
}
|
|
|
|
$dev_addr_mapping_real.each |$mdev_type, $device_addresses| {
|
|
nova::compute::mdev_type { $mdev_type :
|
|
device_addresses => $device_addresses;
|
|
}
|
|
}
|
|
} elsif !empty($mdev_types) {
|
|
nova_config {
|
|
'devices/enabled_mdev_types': value => join(keys($mdev_types), ',')
|
|
}
|
|
create_resources('nova::compute::mdev_type', $mdev_types)
|
|
} else {
|
|
nova_config {
|
|
'devices/enabled_mdev_types': ensure => absent;
|
|
}
|
|
}
|
|
}
|