Files
puppet-magnum/manifests/quota.pp
Takashi Kajinami e14a87dbb1 Prepare for voxpupuli-puppet-lint-plugins
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>
2025-08-20 00:33:23 +09:00

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;
}
}