18b010975c
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: If683fbd098e701a3c4da91941cf818b18b41b209
46 lines
1.0 KiB
Puppet
46 lines
1.0 KiB
Puppet
# == Class: glance::policy
|
|
#
|
|
# Configure the glance policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for glance
|
|
# Example :
|
|
# {
|
|
# 'glance-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'glance-default' => {
|
|
# 'key' => 'default',
|
|
# 'value' => 'rule:admin_or_owner'
|
|
# }
|
|
# }
|
|
# Defaults to empty hash.
|
|
#
|
|
# [*policy_path*]
|
|
# (optional) Path to the glance policy.json file
|
|
# Defaults to /etc/glance/policy.json
|
|
#
|
|
class glance::policy(
|
|
$policies = {},
|
|
$policy_path = '/etc/glance/policy.json',
|
|
) {
|
|
|
|
include ::glance::deps
|
|
|
|
validate_hash($policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
require => Anchor['glance::config::begin'],
|
|
notify => Anchor['glance::config::end'],
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
|
|
oslo::policy { ['glance_api_config', 'glance_registry_config']: policy_file => $policy_path }
|
|
|
|
}
|