Add per module policy service refresh
Updating the policies for this project should only refresh the services that reads it. Change-Id: Id77056322ad610006ac0f216870d679b250ab702 (cherry picked from commit 7d5258c9a9182e7789d25e6524dfbad4f32d7f26)
This commit is contained in:
parent
5914bc84f6
commit
f1606e475b
@ -34,7 +34,7 @@ class zaqar::deps {
|
||||
|
||||
# policy config should occur in the config block also.
|
||||
Anchor['zaqar::config::begin']
|
||||
-> Openstacklib::Policy<||>
|
||||
-> Openstacklib::Policy<| tag == 'zaqar' |>
|
||||
~> Anchor['zaqar::config::end']
|
||||
|
||||
# Installation or config changes will always restart services.
|
||||
|
@ -67,6 +67,7 @@ class zaqar::policy (
|
||||
file_group => $::zaqar::params::group,
|
||||
file_format => 'yaml',
|
||||
purge_config => $purge_config,
|
||||
tag => 'zaqar',
|
||||
}
|
||||
|
||||
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
|
||||
|
@ -33,6 +33,7 @@ describe 'zaqar::policy' do
|
||||
:file_group => 'zaqar',
|
||||
:file_format => 'yaml',
|
||||
:purge_config => false,
|
||||
:tag => 'zaqar',
|
||||
)
|
||||
is_expected.to contain_oslo__policy('zaqar_config').with(
|
||||
:enforce_scope => false,
|
||||
@ -63,6 +64,7 @@ describe 'zaqar::policy' do
|
||||
:file_group => 'zaqar',
|
||||
:file_format => 'yaml',
|
||||
:purge_config => true,
|
||||
:tag => 'zaqar',
|
||||
)
|
||||
is_expected.to contain_oslo__policy('zaqar_config').with(
|
||||
:enforce_scope => false,
|
||||
|
Loading…
x
Reference in New Issue
Block a user