12c1944b3d
This change introduces the config class for ironic-inspector so that users can inject arbitrary parameters even if these are not implemented in manifests. Change-Id: Ieaeb38e96559a2841bad63c7c6db9e7f2f433140
33 lines
924 B
Puppet
33 lines
924 B
Puppet
# == Class: ironic::inspector::config
|
|
#
|
|
# This class is used to manage arbitrary Ironic-inspector configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*ironic_inspector_config*]
|
|
# (optional) Allow configuration of arbitrary Ironic-inspector configurations.
|
|
# The value is an hash of ironic_config resources. Example:
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# ironic_config:
|
|
# DEFAULT/foo:
|
|
# value: fooValue
|
|
# DEFAULT/bar:
|
|
# value: barValue
|
|
#
|
|
# NOTE: The configuration MUST NOT be already handled by this module
|
|
# or Puppet catalog compilation will fail with duplicate resources.
|
|
#
|
|
class ironic::inspector::config (
|
|
$ironic_inspector_config = {},
|
|
) {
|
|
|
|
include ironic::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $ironic_inspector_config)
|
|
|
|
create_resources('ironic_inspector_config', $ironic_inspector_config)
|
|
}
|