Add heat::config class

Other modules provide an X::config class to be able to specify
parameters that are not yet part of the module. Heat was missing this
feature.

This commit aims to add it for puppet-heat.

Change-Id: Ie481598ee4a1b2c451a1e8bddd5faa526d15ef30
This commit is contained in:
Yanis Guenane 2015-07-16 15:26:14 +02:00
parent 26bd032c4d
commit 1b1f7ca0ab
2 changed files with 50 additions and 0 deletions

30
manifests/config.pp Normal file
View File

@ -0,0 +1,30 @@
# == Class: heat::config
#
# This class is used to manage arbitrary Heat configurations.
#
# === Parameters
#
# [*heat_config*]
# (optional) Allow configuration of arbitrary Heat configurations.
# The value is an hash of heat_config resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'},
# 'DEFAULT/bar' => { value => 'barValue'}
# }
# In yaml format, Example:
# heat_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 heat::config (
$heat_config = {},
) {
validate_hash($heat_config)
create_resources('heat_config', $heat_config)
}

View File

@ -0,0 +1,20 @@
require 'spec_helper'
describe 'heat::config' do
let :params do
{ :heat_config => {
'DEFAULT/foo' => { 'value' => 'fooValue' },
'DEFAULT/bar' => { 'value' => 'barValue' },
'DEFAULT/baz' => { 'ensure' => 'absent' }
}
}
end
it 'configures arbitrary heat configurations' do
is_expected.to contain_heat_config('DEFAULT/foo').with_value('fooValue')
is_expected.to contain_heat_config('DEFAULT/bar').with_value('barValue')
is_expected.to contain_heat_config('DEFAULT/baz').with_ensure('absent')
end
end