Merge "Add per module policy service refresh"

This commit is contained in:
Zuul 2023-06-26 15:17:47 +00:00 committed by Gerrit Code Review
commit f0ca808cfe
3 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class heat::deps {
# policy config should occur in the config block also.
Anchor['heat::config::begin']
-> Openstacklib::Policy<||>
-> Openstacklib::Policy<| tag == 'heat' |>
~> Anchor['heat::config::end']
# On any uwsgi config change, we must restart Heat API.

View File

@ -65,6 +65,7 @@ class heat::policy (
file_group => $::heat::params::group,
file_format => 'yaml',
purge_config => $purge_config,
tag => 'heat',
}
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })

View File

@ -33,6 +33,7 @@ describe 'heat::policy' do
:file_group => 'heat',
:file_format => 'yaml',
:purge_config => false,
:tag => 'heat',
)
is_expected.to contain_oslo__policy('heat_config').with(
:enforce_scope => false,
@ -63,6 +64,7 @@ describe 'heat::policy' do
:file_group => 'heat',
:file_format => 'yaml',
:purge_config => true,
:tag => 'heat',
)
is_expected.to contain_oslo__policy('heat_config').with(
:enforce_scope => false,