a07db29002
This changes all the puppet 3 validate_* functions to use the validate_legacy function. The validate_legacy function has been available since about three years but require Puppet >= 4.4.0 and since there is Puppet 4.10.12 as latest we should assume people are running a fairly new Puppet 4 version. This is the first step to then remove all validate function calls and use proper types for parameter as described in spec [1]. [1] https://review.openstack.org/#/c/568929/ Change-Id: Iee8c082b5e4dcb7b035faa56a2182718947ad495
35 lines
922 B
Puppet
35 lines
922 B
Puppet
# == Class: tripleo::host::liquidio::config
|
|
#
|
|
# This class is used to manage Liquidio configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*xxx_config*]
|
|
# (optional) Allow configuration of arbitrary Neutron xxx specific configurations.
|
|
# The value is a hash of neutron_config resources. Example:
|
|
# server_config =>
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
#
|
|
# NOTE: { 'DEFAULT/foo': value => 'fooValue'; 'DEFAULT/bar': value => 'barValue'} is invalid.
|
|
#
|
|
# In yaml format, Example:
|
|
# server_config:
|
|
# DEFAULT/foo:
|
|
# value: fooValue
|
|
# DEFAULT/bar:
|
|
# value: barValue
|
|
#
|
|
# [*liquidio_config*]
|
|
# (optional) Allow configuration of liquidio.conf configurations.
|
|
#
|
|
class tripleo::host::liquidio::config (
|
|
$liquidio_config = {}
|
|
) {
|
|
|
|
validate_legacy(Hash, 'validate_hash', $liquidio_config)
|
|
|
|
create_resources('liquidio_config', $liquidio_config)
|
|
}
|