You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
# == 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 }
|
|
|
|
}
|