puppet-magnum/manifests/clients/cinder.pp
Xingchao Yu 73210b5516 Refactor class magnum::clients
To make a better support of OpenStack clients' configuration in Magnum,
this patch splits the original magnum::clients into services
related classes and make it compatible with the old version.

Change-Id: I2eb25717fd07833264f1e3b9919b59f917312427
2018-01-09 15:01:37 +13:00

23 lines
487 B
Puppet

# == Class: magnum::clients::cinder
#
# Manages cinder clients configuration in magnum server
#
# === Parameters:
#
# [*region_name*]
# (optional) Region in Identity service catalog to use for communication
# with the OpenStack service.
# Defaults to RegionOne
#
class magnum::clients::cinder(
$region_name = $magnum::clients::region_name,
){
include ::magnum::deps
include ::magnum::params
magnum_config {
'cinder_client/region_name': value => $region_name;
}
}