
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I7de4bd06c59b921c8774accf462db1cf434d5cf6
81 lines
2.7 KiB
Puppet
81 lines
2.7 KiB
Puppet
# == Class: manila::quota
|
|
#
|
|
# Setup and configure Manila quotas.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*shares*]
|
|
# (optional) Number of shares allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*snapshots*]
|
|
# (optional) Number of share snapshots allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*gigabytes*]
|
|
# (optional) Number of share gigabytes (snapshots are also included)
|
|
# allowed per project. Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*driver*]
|
|
# (optional) Default driver to use for quota checks.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*snapshot_gigabytes*]
|
|
# (optional) Number of snapshot gigabytes allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*share_networks*]
|
|
# (optional) Number of share-networks allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*share_replicas*]
|
|
# (optional) Number of share-replicas allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*replica_gigabytes*]
|
|
# (optional) Number of replica gigabytes allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*reservation_expire*]
|
|
# (optional) Number of seconds until a reservation expires.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*until_refresh*]
|
|
# (optional) Count of reservations until usage is refreshed.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*max_age*]
|
|
# (optional) Number of seconds between subsequent usage refreshes.
|
|
# Defaults to $:os_service_default.
|
|
#
|
|
class manila::quota (
|
|
$shares = $facts['os_service_default'],
|
|
$snapshots = $facts['os_service_default'],
|
|
$gigabytes = $facts['os_service_default'],
|
|
$driver = $facts['os_service_default'],
|
|
$snapshot_gigabytes = $facts['os_service_default'],
|
|
$share_networks = $facts['os_service_default'],
|
|
$share_replicas = $facts['os_service_default'],
|
|
$replica_gigabytes = $facts['os_service_default'],
|
|
$reservation_expire = $facts['os_service_default'],
|
|
$until_refresh = $facts['os_service_default'],
|
|
$max_age = $facts['os_service_default'],
|
|
) {
|
|
|
|
include manila::deps
|
|
|
|
manila_config {
|
|
'quota/shares': value => $shares;
|
|
'quota/snapshots': value => $snapshots;
|
|
'quota/gigabytes': value => $gigabytes;
|
|
'quota/driver': value => $driver;
|
|
'quota/snapshot_gigabytes': value => $snapshot_gigabytes;
|
|
'quota/share_networks': value => $share_networks;
|
|
'quota/share_replicas': value => $share_replicas;
|
|
'quota/replica_gigabytes': value => $replica_gigabytes;
|
|
'quota/reservation_expire': value => $reservation_expire;
|
|
'quota/until_refresh': value => $until_refresh;
|
|
'quota/max_age': value => $max_age;
|
|
}
|
|
}
|