Merge "Use yaml instead of json for policy file"

This commit is contained in:
Zuul 2021-03-26 13:29:38 +00:00 committed by Gerrit Code Review
commit 72d835b507
3 changed files with 29 additions and 12 deletions

View File

@ -20,12 +20,12 @@
# Defaults to empty hash.
#
# [*policy_path*]
# (Optional) Path to the nova policy.json file
# Defaults to /etc/gnocchi/policy.json
# (Optional) Path to the nova policy.yaml file
# Defaults to /etc/gnocchi/policy.yaml
#
class gnocchi::policy (
$policies = {},
$policy_path = '/etc/gnocchi/policy.json',
$policy_path = '/etc/gnocchi/policy.yaml',
) {
include gnocchi::deps
@ -33,10 +33,22 @@ class gnocchi::policy (
validate_legacy(Hash, 'validate_hash', $policies)
# TODO(tkajinam): Remove this once version with policy-in-code implementation
# is released.
exec { 'gnocci-oslopolicy-convert-json-to-yaml':
command => "oslopolicy-convert-json-to-yaml --namespace gnocchi --policy-file /etc/gnocchi/policy.json --output-file ${policy_path}",
unless => "test -f ${policy_path}",
path => ['/bin','/usr/bin','/usr/local/bin'],
require => Anchor['gnocchi::install::end'],
}
Exec<| title == 'gnocchi-oslopolicy-convert-json-to-yaml' |>
-> File<| title == $policy_path |>
Openstacklib::Policy::Base {
file_path => $policy_path,
file_user => 'root',
file_group => $::gnocchi::params::group,
file_path => $policy_path,
file_user => 'root',
file_group => $::gnocchi::params::group,
file_format => 'yaml',
}
create_resources('openstacklib::policy::base', $policies)

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
Now policy.yaml is used by default instead of policy.json.

View File

@ -5,7 +5,7 @@ describe 'gnocchi::policy' do
shared_examples_for 'gnocchi policies' do
let :params do
{
:policy_path => '/etc/gnocchi/policy.json',
:policy_path => '/etc/gnocchi/policy.yaml',
:policies => {
'context_is_admin' => {
'key' => 'context_is_admin',
@ -17,13 +17,14 @@ describe 'gnocchi::policy' do
it 'set up the policies' do
is_expected.to contain_openstacklib__policy__base('context_is_admin').with({
:key => 'context_is_admin',
:value => 'foo:bar',
:file_user => 'root',
:file_group => 'gnocchi',
:key => 'context_is_admin',
:value => 'foo:bar',
:file_user => 'root',
:file_group => 'gnocchi',
:file_format => 'yaml',
})
is_expected.to contain_oslo__policy('gnocchi_config').with(
:policy_file => '/etc/gnocchi/policy.json',
:policy_file => '/etc/gnocchi/policy.yaml',
)
end
end