Puppet Class: nova::workarounds

Defined in:
manifests/workarounds.pp

Overview

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

Parameters:

  • enable_numa_live_migration (Any) (defaults to: undef)


13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'manifests/workarounds.pp', line 13

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;
    }
  }

}