0d043d793f
This change introduces support for [clients] parameters and [clients_<service>] parameters, which determine behavior of service clients used by heat for communication with the OpenStack services. - Implementation of heat::clients::<service> are generally same. Only cinder, heat, keystone and nova provides additional parameters. - The existing parameters in the base heat class are deprecated in favor of the new classes. Change-Id: Icdf4f0201dd1e5f93a450473709851977ec20034
51 lines
1.4 KiB
Puppet
51 lines
1.4 KiB
Puppet
# Define heat::clients::base
|
|
#
|
|
# common client configuration
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*section*]
|
|
# (Optional) Section name used to configure parameters.
|
|
# Defaults to $name.
|
|
#
|
|
# [*endpoint_type*]
|
|
# (Optional) Type of endpoint in Identity service catalog to use for
|
|
# communication with the OpenStack service.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*ca_file*]
|
|
# (Optional) Optional CA cert file to use in SSL communications.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*cert_file*]
|
|
# (Optional) Optional PEM-formatted certificate chain file.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*key_file*]
|
|
# (Optional) Optional PEM-formatted file that contains the private key.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*insecure*]
|
|
# (Optional) If set, then the server's certificate will not be verified.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
define heat::clients::base (
|
|
$section = $name,
|
|
$endpoint_type = $::os_service_default,
|
|
$ca_file = $::os_service_default,
|
|
$cert_file = $::os_service_default,
|
|
$key_file = $::os_service_default,
|
|
$insecure = $::os_service_default,
|
|
) {
|
|
|
|
include heat::deps
|
|
|
|
heat_config {
|
|
"${section}/endpoint_type": value => $endpoint_type;
|
|
"${section}/ca_file": value => $ca_file;
|
|
"${section}/cert_file": value => $cert_file;
|
|
"${section}/key_file": value => $key_file;
|
|
"${section}/insecure": value => $insecure;
|
|
}
|
|
}
|