
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3c5704fa87db1cca7f0edd9396eacac6e70438f9 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
55 lines
1.7 KiB
Puppet
55 lines
1.7 KiB
Puppet
# == Class: nova::migration::qemu
|
|
#
|
|
# Sets qemu config that is required for migration
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*configure_qemu*]
|
|
# (optional) Whether or not configure qemu bits.
|
|
# Defaults to false.
|
|
#
|
|
# [*migration_address*]
|
|
# (optional) Override the listen address for all incoming migrations.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*migration_host*]
|
|
# (optional) The default hostname or IP address which will be used by
|
|
# a migration source for transferring migration data to this host.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*migration_port_min*]
|
|
# (optional) Lower limit of port range used for migration.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*migration_port_max*]
|
|
# (optional) Higher limit of port range used for migration.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
class nova::migration::qemu (
|
|
Boolean $configure_qemu = false,
|
|
$migration_address = $facts['os_service_default'],
|
|
$migration_host = $facts['os_service_default'],
|
|
$migration_port_min = $facts['os_service_default'],
|
|
$migration_port_max = $facts['os_service_default'],
|
|
) {
|
|
include nova::deps
|
|
|
|
Qemu_config<||> ~> Service<| tag == 'libvirt-qemu-service' |>
|
|
|
|
if $configure_qemu {
|
|
qemu_config {
|
|
'migration_address': value => $migration_address;
|
|
'migration_host': value => $migration_host;
|
|
'migration_port_min': value => $migration_port_min;
|
|
'migration_port_max': value => $migration_port_max;
|
|
}
|
|
} else {
|
|
qemu_config {
|
|
'migration_address': ensure => absent;
|
|
'migration_host': ensure => absent;
|
|
'migration_port_min': ensure => absent;
|
|
'migration_port_max': ensure => absent;
|
|
}
|
|
}
|
|
}
|