Puppet Class: ironic::config
- Defined in:
- manifests/config.pp
Overview
Class: ironic::config
This class is used to manage arbitrary Ironic configurations.
Parameters
- ironic_config
-
(optional) Allow configuration of arbitrary Ironic 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.
23 24 25 26 27 28 29 30 31 32 |
# File 'manifests/config.pp', line 23
class ironic::config (
$ironic_config = {},
) {
include ironic::deps
validate_legacy(Hash, 'validate_hash', $ironic_config)
create_resources('ironic_config', $ironic_config)
}
|