7f88e87fe8
Ironic has never used api-paste.ini but defines pipeline in code. The ironic_api_paste_ini resource type to manage api-paste.ini is deprecated because the resource is just invalid. Change-Id: I5fc1d691642f184b6fdd4bfcba5314b3ea11b583
44 lines
1.1 KiB
Puppet
44 lines
1.1 KiB
Puppet
# == 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
|
|
#
|
|
# DEPRECATED PARAMETERS
|
|
#
|
|
# [*ironic_api_paste_ini*]
|
|
# (optional) Allow configuration of /etc/ironic/api-paste.ini options.
|
|
#
|
|
# NOTE: The configuration MUST NOT be already handled by this module
|
|
# or Puppet catalog compilation will fail with duplicate resources.
|
|
#
|
|
class ironic::config (
|
|
$ironic_config = {},
|
|
# DEPRECATED PARAMETERS
|
|
$ironic_api_paste_ini = undef,
|
|
) {
|
|
|
|
include ironic::deps
|
|
|
|
if $ironic_api_paste_ini != undef {
|
|
warning('The ironic_api_paste_ini parameter is deprecated and has no effect')
|
|
}
|
|
|
|
validate_legacy(Hash, 'validate_hash', $ironic_config)
|
|
|
|
create_resources('ironic_config', $ironic_config)
|
|
}
|