mirror of
https://opendev.org/openstack/ansible-collections-openstack.git
synced 2026-07-25 01:04:28 +00:00
Add support for l7_rules loadbalancer quota
Change-Id: I1085bdad5f6bb6f29fb4c6fd60d991f1240739c4 Signed-off-by: Mathieu Gagné <mgagne@calavera.ca>
This commit is contained in:
@@ -67,6 +67,9 @@ options:
|
|||||||
l7_policies:
|
l7_policies:
|
||||||
description: The maximum amount of L7 policies you can create.
|
description: The maximum amount of L7 policies you can create.
|
||||||
type: int
|
type: int
|
||||||
|
l7_rules:
|
||||||
|
description: The maximum amount of L7 rules you can create.
|
||||||
|
type: int
|
||||||
listeners:
|
listeners:
|
||||||
description: The maximum number of listeners you can create.
|
description: The maximum number of listeners you can create.
|
||||||
type: int
|
type: int
|
||||||
@@ -251,6 +254,10 @@ quotas:
|
|||||||
description: The maximum amount of L7 policies you can
|
description: The maximum amount of L7 policies you can
|
||||||
create.
|
create.
|
||||||
type: int
|
type: int
|
||||||
|
l7_rules:
|
||||||
|
description: The maximum amount of L7 rules you can
|
||||||
|
create.
|
||||||
|
type: int
|
||||||
listeners:
|
listeners:
|
||||||
description: The maximum number of listeners you can create
|
description: The maximum number of listeners you can create
|
||||||
type: int
|
type: int
|
||||||
@@ -364,6 +371,7 @@ quotas:
|
|||||||
health_monitors: 10,
|
health_monitors: 10,
|
||||||
load_balancers: 10,
|
load_balancers: 10,
|
||||||
l7_policies: 10,
|
l7_policies: 10,
|
||||||
|
l7_rules: 10,
|
||||||
listeners: 10,
|
listeners: 10,
|
||||||
pools: 5,
|
pools: 5,
|
||||||
members: 5,
|
members: 5,
|
||||||
@@ -395,6 +403,7 @@ class QuotaModule(OpenStackModule):
|
|||||||
instances=dict(type='int'),
|
instances=dict(type='int'),
|
||||||
key_pairs=dict(type='int', no_log=False),
|
key_pairs=dict(type='int', no_log=False),
|
||||||
l7_policies=dict(type='int'),
|
l7_policies=dict(type='int'),
|
||||||
|
l7_rules=dict(type='int'),
|
||||||
listeners=dict(type='int'),
|
listeners=dict(type='int'),
|
||||||
load_balancers=dict(type='int', aliases=['loadbalancer']),
|
load_balancers=dict(type='int', aliases=['loadbalancer']),
|
||||||
metadata_items=dict(type='int'),
|
metadata_items=dict(type='int'),
|
||||||
|
|||||||
Reference in New Issue
Block a user