Add support for the oslo_policy/enforce_scope parameter

Depends-on: https://review.opendev.org/#/c/759008/
Change-Id: I23187c75ddf176dfb0eac1b3fff03cec98fb0774
This commit is contained in:
Takashi Kajinami 2021-03-21 10:58:10 +09:00
parent 35652b23a6
commit d12f0ff8c7
3 changed files with 25 additions and 11 deletions

View File

@ -4,6 +4,10 @@
#
# === Parameters
#
# [*enforce_scope*]
# (Optional) Whether or not to enforce scope when evaluating policies.
# Defaults to $::os_service_default.
#
# [*policies*]
# (Optional) Set of policies to configure for magnum
# Example :
@ -20,12 +24,13 @@
# Defaults to empty hash.
#
# [*policy_path*]
# (Optional) Path to the nova policy.yaml file
# (Optional) Path to the magnum policy.yaml file
# Defaults to /etc/magnum/policy.yaml
#
class magnum::policy (
$policies = {},
$policy_path = '/etc/magnum/policy.yaml',
$enforce_scope = $::os_service_default,
$policies = {},
$policy_path = '/etc/magnum/policy.yaml',
) {
include magnum::deps
@ -42,6 +47,9 @@ class magnum::policy (
create_resources('openstacklib::policy::base', $policies)
oslo::policy { 'magnum_config': policy_file => $policy_path }
oslo::policy { 'magnum_config':
enforce_scope => $enforce_scope,
policy_file => $policy_path
}
}

View File

@ -0,0 +1,5 @@
---
features:
- |
The new ``magnum::policy::enforce_scope`` parameter has been added to
support the corresponding parameter in oslo.policy library.

View File

@ -1,12 +1,12 @@
require 'spec_helper'
describe 'magnum::policy' do
shared_examples_for 'magnum policies' do
shared_examples 'magnum::policy' do
let :params do
{
:policy_path => '/etc/magnum/policy.yaml',
:policies => {
:enforce_scope => false,
:policy_path => '/etc/magnum/policy.yaml',
:policies => {
'context_is_admin' => {
'key' => 'context_is_admin',
'value' => 'foo:bar'
@ -24,20 +24,21 @@ describe 'magnum::policy' do
:file_format => 'yaml',
})
is_expected.to contain_oslo__policy('magnum_config').with(
:policy_file => '/etc/magnum/policy.yaml',
:enforce_scope => false,
:policy_file => '/etc/magnum/policy.yaml',
)
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge!(OSDefaults.get_facts())
end
it_configures 'magnum policies'
it_behaves_like 'magnum::policy'
end
end
end