Files
puppet-nova/manifests/workarounds.pp
Takashi Kajinami 1e0af55835 Deprecate nova::workarounds::enable_numa_live_migration
workarounds/enable_numa_live_migration was deprecated in nova
since Train release[1], the corresponding hieradata should be
deprecated.

[1] If649218db86a04db744990ec0139b4f0b1e79ad6

Change-Id: I02325d7ee5b073f018420abe38762362142818b6
2020-01-21 13:20:10 +09:00

26 lines
563 B
Puppet

# == Class: nova::workarounds
#
# nova workarounds configuration
#
# === Parameters:
#
# DEPRECATED
#
# [*enable_numa_live_migration*]
# (optional) Whether to enable live migration for NUMA topology instances.
# Defaults to undef
#
class nova::workarounds (
# DEPRECATED PARAMETER
$enable_numa_live_migration = undef,
) {
if $enable_numa_live_migration != undef {
warning('The enable_numa_live_migration parameter is deprecated')
nova_config {
'workarounds/enable_numa_live_migration': value => $enable_numa_live_migration;
}
}
}