9412a6f45a
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: If27e91cee37d816bfc7b577a154c71a9e5a48324
31 lines
633 B
Puppet
31 lines
633 B
Puppet
# == Class: murano::policy
|
|
#
|
|
# Configure the murano policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for murano
|
|
# Defaults to empty hash.
|
|
#
|
|
# [*policy_path*]
|
|
# (optional) Path to the murano policy.json file
|
|
# Defaults to /etc/murano/policy.json
|
|
#
|
|
class murano::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/murano/policy.json',
|
|
) {
|
|
|
|
include ::murano::deps
|
|
|
|
validate_hash($policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
oslo::policy { 'murano_config': policy_file => $policy_path }
|
|
}
|