
This change enables support for modular libvirt daemon configurations. NOTE: As of now, this change doesn't handle any modular daemons socket configuration. Change-Id: I90c3dd7bd63f9f54e43eee7bc2f58d165ca80e57
75 lines
2.6 KiB
Puppet
75 lines
2.6 KiB
Puppet
# == Class: nova::compute::libvirt::config
|
|
#
|
|
# This class is used to manage arbitrary libvirtd configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*libvirtd_config*]
|
|
# (optional) Allow configuration of arbitrary libvirtd configurations.
|
|
# The value is an hash of libvirtd_config resources. Example:
|
|
# { 'foo' => { value => 'fooValue'},
|
|
# 'bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# libvirtd_config:
|
|
# foo:
|
|
# value: fooValue
|
|
# bar:
|
|
# value: barValue
|
|
#
|
|
# [*virtlogd_config*]
|
|
# (optional) Allow configuration of arbitrary virtlogd configurations.
|
|
# The value is an hash of virtlogd_config resources.
|
|
#
|
|
# [*virtnodedevd_config*]
|
|
# (optional) Allow configuration of arbitrary virtnodedevd configurations.
|
|
# The value is an hash of virtnodedevd_config resources.
|
|
#
|
|
# [*virtproxyd_config*]
|
|
# (optional) Allow configuration of arbitrary virtproxyd configurations.
|
|
# The value is an hash of virtproxyd_config resources.
|
|
#
|
|
# [*virtqemud_config*]
|
|
# (optional) Allow configuration of arbitrary virtqemud configurations.
|
|
# The value is an hash of virtqemud_config resources.
|
|
#
|
|
# [*virtsecretd_config*]
|
|
# (optional) Allow configuration of arbitrary virtsecretd configurations.
|
|
# The value is an hash of virtsecretd_config resources.
|
|
#
|
|
# [*virtstoraged_config*]
|
|
# (optional) Allow configuration of arbitrary virtstoraged configurations.
|
|
# The value is an hash of virtstoraged_config resources.
|
|
#
|
|
# NOTE: The configuration MUST NOT be already handled by this module
|
|
# or Puppet catalog compilation will fail with duplicate resources.
|
|
#
|
|
class nova::compute::libvirt::config (
|
|
$libvirtd_config = {},
|
|
$virtlogd_config = {},
|
|
$virtnodedevd_config = {},
|
|
$virtproxyd_config = {},
|
|
$virtqemud_config = {},
|
|
$virtsecretd_config = {},
|
|
$virtstoraged_config = {},
|
|
) {
|
|
|
|
include nova::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $libvirtd_config)
|
|
validate_legacy(Hash, 'validate_hash', $virtlogd_config)
|
|
validate_legacy(Hash, 'validate_hash', $virtnodedevd_config)
|
|
validate_legacy(Hash, 'validate_hash', $virtproxyd_config)
|
|
validate_legacy(Hash, 'validate_hash', $virtqemud_config)
|
|
validate_legacy(Hash, 'validate_hash', $virtsecretd_config)
|
|
validate_legacy(Hash, 'validate_hash', $virtstoraged_config)
|
|
|
|
create_resources('libvirtd_config', $libvirtd_config)
|
|
create_resources('virtlogd_config', $virtlogd_config)
|
|
create_resources('virtnodedevd_config', $virtnodedevd_config)
|
|
create_resources('virtproxyd_config', $virtproxyd_config)
|
|
create_resources('virtqemud_config', $virtqemud_config)
|
|
create_resources('virtsecretd_config', $virtsecretd_config)
|
|
create_resources('virtstoraged_config', $virtstoraged_config)
|
|
}
|