Puppet Class: octavia::policy
- Defined in:
- manifests/policy.pp
Overview
Class: octavia::policy
Configure the octavia policies
Parameters
- enforce_scope
-
(Optional) Whether or not to enforce scope when evaluating policies. 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
-
(Optional) Set of policies to configure for octavia Example :
{ 'octavia-context_is_admin' => { 'key' => 'context_is_admin', 'value' => 'true' }, 'octavia-default' => { 'key' => 'default', 'value' => 'rule:admin_or_owner' } }
Defaults to empty hash.
- policy_path
-
(Optional) Path to the octavia policy.yaml file Defaults to /etc/octavia/policy.yaml
- policy_dirs
-
(Optional) Path to the octavia policy folder Defaults to $::os_service_default
- purge_config
-
(optional) Whether to set only the specified policy rules in the policy
file. Defaults to false.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'manifests/policy.pp', line 44
class octavia::policy (
$enforce_scope = $::os_service_default,
$enforce_new_defaults = $::os_service_default,
$policies = {},
$policy_path = '/etc/octavia/policy.yaml',
$policy_dirs = $::os_service_default,
$purge_config = false,
) {
include octavia::deps
include octavia::params
validate_legacy(Hash, 'validate_hash', $policies)
$policy_parameters = {
policies => $policies,
policy_path => $policy_path,
file_user => 'root',
file_group => $::octavia::params::group,
file_format => 'yaml',
purge_config => $purge_config,
tag => 'octavia',
}
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
oslo::policy { 'octavia_config':
enforce_scope => $enforce_scope,
enforce_new_defaults => $enforce_new_defaults,
policy_file => $policy_path,
policy_dirs => $policy_dirs,
}
}
|