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 7d5258c9a9)
(cherry picked from commit f1606e475b)
(cherry picked from commit 30c5bf65da)
This commit is contained in:
Tobias Urdin
2023-06-26 00:02:55 +02:00
parent 960da56a32
commit b1afb21e99
3 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -62,6 +62,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 })

View File

@ -32,6 +32,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,
@ -61,6 +62,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,