c5544a5a66
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: I7f3f97a54aec888d99c7405310afef8e1f3907f0
23 lines
437 B
Puppet
23 lines
437 B
Puppet
# == Class: magnum::certificates
|
|
#
|
|
# Manages the magnum certificate manager plugin
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*cert_manager_type*]
|
|
# (optional) Certificate Manager plugin. Defaults to barbican. (string value)
|
|
# Defaults to 'barbican'
|
|
#
|
|
class magnum::certificates (
|
|
$cert_manager_type = $::os_service_default,
|
|
) {
|
|
|
|
include ::magnum::deps
|
|
|
|
magnum_config { 'certificates/cert_manager_type':
|
|
value => $cert_manager_type;
|
|
}
|
|
|
|
}
|
|
|