5242d3a08b
... so that this module supports configuration of all libvirt daemons. Change-Id: I93a02935df3a23e15b4a37081dc2a6ea646f6c79
82 lines
2.9 KiB
Puppet
82 lines
2.9 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.
|
|
#
|
|
# [*virtlockd_config*]
|
|
# (optional) Allow configuration of arbitrary virtlockd configurations.
|
|
# The value is an hash of virtlockd_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 = {},
|
|
$virtlockd_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', $virtlockd_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('virtlockd_config', $virtlockd_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)
|
|
}
|