51258a3fba
Change-Id: I6d1c68290a5660ce7ca8adf164ab9b2354e765d4
99 lines
3.5 KiB
Puppet
99 lines
3.5 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'].
|
|
#
|
|
# [*snapshot_gigabytes*]
|
|
# (optional) Number of snapshot gigabytes allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*per_share_gigabytes*]
|
|
# (optional) Max size allowed per share, in gigabytes.
|
|
# 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'].
|
|
#
|
|
# [*backups*]
|
|
# (optional) Number of share backups allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*backup_gigabytes*]
|
|
# (optional) Total amount of share backups allowed per project.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*driver*]
|
|
# (optional) Default driver to use for quota checks.
|
|
# 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'],
|
|
$snapshot_gigabytes = $facts['os_service_default'],
|
|
$per_share_gigabytes = $facts['os_service_default'],
|
|
$share_networks = $facts['os_service_default'],
|
|
$share_replicas = $facts['os_service_default'],
|
|
$replica_gigabytes = $facts['os_service_default'],
|
|
$backups = $facts['os_service_default'],
|
|
$backup_gigabytes = $facts['os_service_default'],
|
|
$driver = $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/per_share_gigabytes': value => $per_share_gigabytes;
|
|
'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/backups': value => $backups;
|
|
'quota/backup_gigabytes': value => $backup_gigabytes;
|
|
'quota/driver': value => $driver;
|
|
'quota/reservation_expire': value => $reservation_expire;
|
|
'quota/until_refresh': value => $until_refresh;
|
|
'quota/max_age': value => $max_age;
|
|
}
|
|
}
|