5e6151be97
Change-Id: Iea5de7192d01739024d17e9813fe591f230aaf4d
47 lines
1014 B
Puppet
47 lines
1014 B
Puppet
# == Class: ironic::policy
|
|
#
|
|
# Configure the ironic policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (Optional) Set of policies to configure for ironic
|
|
# Example :
|
|
# {
|
|
# 'ironic-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'ironic-default' => {
|
|
# 'key' => 'default',
|
|
# 'value' => 'rule:admin_or_owner'
|
|
# }
|
|
# }
|
|
# Defaults to empty hash.
|
|
#
|
|
# [*policy_path*]
|
|
# (Optional) Path to the ironic policy.json file
|
|
# Defaults to /etc/ironic/policy.json
|
|
#
|
|
class ironic::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/ironic/policy.json',
|
|
) {
|
|
|
|
include ironic::deps
|
|
include ironic::params
|
|
|
|
validate_legacy(Hash, 'validate_hash', $policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
file_user => 'root',
|
|
file_group => $::ironic::params::group,
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
|
|
oslo::policy { 'ironic_config': policy_file => $policy_path }
|
|
|
|
}
|