Files
puppet-gnocchi/manifests/policy.pp
Emilien Macchi feee911823 Implement API service & dependencies
This patch rewrite puppet-gnocchi to be compliant with other modules.
It takes example at how puppet-aodh was written.

* Update init.pp to match Gnocchi requirements
* Update config.pp
* Add policy.pp
* Add storage.pp for carbonara
* Update db configuration
* Update keystone/auth.pp
* Add acceptance for API service for Centos only (not packaged on Ubuntu)
* Update unit tests

Change-Id: I82400b1e30f3700ab7a3d006b6bb143351bcc830
2015-11-06 15:43:42 -05:00

40 lines
810 B
Puppet

# == Class: gnocchi::policy
#
# Configure the gnocchi policies
#
# === Parameters
#
# [*policies*]
# (optional) Set of policies to configure for gnocchi
# Example :
# {
# 'gnocchi-context_is_admin' => {
# 'key' => 'context_is_admin',
# 'value' => 'true'
# },
# 'gnocchi-default' => {
# 'key' => 'default',
# 'value' => 'rule:admin_or_owner'
# }
# }
# Defaults to empty hash.
#
# [*policy_path*]
# (optional) Path to the nova policy.json file
# Defaults to /etc/gnocchi/policy.json
#
class gnocchi::policy (
$policies = {},
$policy_path = '/etc/gnocchi/policy.json',
) {
validate_hash($policies)
Openstacklib::Policy::Base {
file_path => $policy_path,
}
create_resources('openstacklib::policy::base', $policies)
}