
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3109b052d5eb21f6f26174390a9d5bf2756c6ec2 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
20 lines
413 B
Puppet
20 lines
413 B
Puppet
# == Class: magnum::quota
|
|
#
|
|
# Setup magnum quota.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*max_clusters_per_project*]
|
|
# (optional) Number of clusters allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
class magnum::quota (
|
|
$max_clusters_per_project = $facts['os_service_default']
|
|
) {
|
|
include magnum::deps
|
|
|
|
magnum_config {
|
|
'quotas/max_clusters_per_project': value => $max_clusters_per_project;
|
|
}
|
|
}
|