cb865e6e5b
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: Ibc184a50cf16b7048e0f7249f8894d8661bb76fe
42 lines
871 B
Puppet
42 lines
871 B
Puppet
# == Class: aodh::policy
|
|
#
|
|
# Configure the aodh policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for aodh
|
|
# Example :
|
|
# {
|
|
# 'aodh-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'aodh-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/aodh/policy.json
|
|
#
|
|
class aodh::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/aodh/policy.json',
|
|
) {
|
|
|
|
include ::aodh::deps
|
|
|
|
validate_hash($policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
oslo::policy { 'aodh_config': policy_file => $policy_path }
|
|
}
|