82cb1503be
Change-Id: I8663139fb88dd6f81a92e9680c8cfc632ac31b10
19 lines
376 B
Puppet
19 lines
376 B
Puppet
# == Class: magnum::quota
|
|
#
|
|
# Setup magnum quota.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*max_clusters_per_project*]
|
|
# (optional) Number of clusters allowed per project.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
class magnum::quota (
|
|
$max_clusters_per_project = $::os_service_default
|
|
) {
|
|
|
|
magnum_config {
|
|
'quotas/max_clusters_per_project': value => $max_clusters_per_project;
|
|
}
|
|
}
|