12d06f3636
... because these parameters were deprecated during Wallaby. Change-Id: I097df997bbe66f274c76a29d42f49ffdba2c9575
45 lines
1.4 KiB
Puppet
45 lines
1.4 KiB
Puppet
# == Class: octavia::quota
|
|
#
|
|
# Setup and configure octavia quotas.
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*default_load_balancer_quota*]
|
|
# (optional) Default per project load balancer quota
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*default_listener_quota*]
|
|
# (optional) Default per project listener quota.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*default_member_quota*]
|
|
# (optional) Default per project member quota.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*default_pool_quota*]
|
|
# (optional) Default per project pool quota.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*default_health_monitor_quota*]
|
|
# (optional) Default per project health monitor quota.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
class octavia::quota (
|
|
$default_load_balancer_quota = $::os_service_default,
|
|
$default_listener_quota = $::os_service_default,
|
|
$default_member_quota = $::os_service_default,
|
|
$default_pool_quota = $::os_service_default,
|
|
$default_health_monitor_quota = $::os_service_default,
|
|
) {
|
|
|
|
include octavia::deps
|
|
|
|
octavia_config {
|
|
'quotas/default_load_balancer_quota': value => $default_load_balancer_quota;
|
|
'quotas/default_listener_quota': value => $default_listener_quota;
|
|
'quotas/default_member_quota': value => $default_member_quota;
|
|
'quotas/default_pool_quota': value => $default_pool_quota;
|
|
'quotas/default_health_monitor_quota': value => $default_health_monitor_quota;
|
|
}
|
|
}
|