Add support for oslo_policy/enforce_new_defaults

Depends-on: https://review.opendev.org/781428
Change-Id: Ifa6bf383845227835a0da0ae1a509c22b18b98b5
This commit is contained in:
Takashi Kajinami 2021-03-24 18:27:45 +09:00
parent 596a5fea71
commit 733a221c31
3 changed files with 24 additions and 10 deletions

View File

@ -8,6 +8,11 @@
# (Optional) Whether or not to enforce scope when evaluating policies. # (Optional) Whether or not to enforce scope when evaluating policies.
# Defaults to $::os_service_default. # Defaults to $::os_service_default.
# #
# [*enforce_new_defaults*]
# (Optional) Whether or not to use old deprecated defaults when evaluating
# policies.
# Defaults to $::os_service_default.
#
# [*policies*] # [*policies*]
# (Optional) Set of policies to configure for watcher # (Optional) Set of policies to configure for watcher
# Example : # Example :
@ -28,9 +33,10 @@
# Defaults to /etc/watcher/policy.yaml # Defaults to /etc/watcher/policy.yaml
# #
class watcher::policy ( class watcher::policy (
$enforce_scope = $::os_service_default, $enforce_scope = $::os_service_default,
$policies = {}, $enforce_new_defaults = $::os_service_default,
$policy_path = '/etc/watcher/policy.yaml', $policies = {},
$policy_path = '/etc/watcher/policy.yaml',
) { ) {
include watcher::deps include watcher::deps
@ -48,8 +54,9 @@ class watcher::policy (
create_resources('openstacklib::policy::base', $policies) create_resources('openstacklib::policy::base', $policies)
oslo::policy { 'watcher_config': oslo::policy { 'watcher_config':
enforce_scope => $enforce_scope, enforce_scope => $enforce_scope,
policy_file => $policy_path enforce_new_defaults => $enforce_new_defaults,
policy_file => $policy_path
} }
} }

View File

@ -0,0 +1,5 @@
---
features:
- |
The new ``watcher::policy::enforce_new_defaults`` parameter has been
added.

View File

@ -4,9 +4,10 @@ describe 'watcher::policy' do
shared_examples 'watcher::policy' do shared_examples 'watcher::policy' do
let :params do let :params do
{ {
:enforce_scope => false, :enforce_scope => false,
:policy_path => '/etc/watcher/policy.yaml', :enforce_new_defaults => false,
:policies => { :policy_path => '/etc/watcher/policy.yaml',
:policies => {
'context_is_admin' => { 'context_is_admin' => {
'key' => 'context_is_admin', 'key' => 'context_is_admin',
'value' => 'foo:bar' 'value' => 'foo:bar'
@ -24,8 +25,9 @@ describe 'watcher::policy' do
:file_format => 'yaml', :file_format => 'yaml',
}) })
is_expected.to contain_oslo__policy('watcher_config').with( is_expected.to contain_oslo__policy('watcher_config').with(
:enforce_scope => false, :enforce_scope => false,
:policy_file => '/etc/watcher/policy.yaml', :enforce_new_defaults => false,
:policy_file => '/etc/watcher/policy.yaml',
) )
end end
end end