e4711aa453
fixes bug 1096486 The previous code used a special extension loading mechanism to selectively load the Quota model is the plugin matched and object path. This was intended to load models required by plugins, but this loading actually occurred after the db schema was created, so the model was not always loaded. This fix refactors the code to make the QuotaV2 ext behave similarly to the other extensions ensuring the models are loaded prior to database schema creation. Change-Id: Id7d1f7ddee69bfc4419df375366319dedc3dc439
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
[DEFAULT]
|
|
# Show more verbose log output (sets INFO log level output)
|
|
verbose = True
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = False
|
|
|
|
# Address to bind the API server
|
|
bind_host = 0.0.0.0
|
|
|
|
# Port the bind the API server to
|
|
bind_port = 9696
|
|
|
|
# Path to the extensions
|
|
api_extensions_path = ../../../../../extensions
|
|
|
|
# Paste configuration file
|
|
api_paste_config = api-paste.ini.cisco.test
|
|
|
|
core_plugin = quantum.plugins.cisco.network_plugin.PluginV2
|
|
|
|
# The messaging module to use, defaults to kombu.
|
|
rpc_backend = quantum.openstack.common.rpc.impl_fake
|
|
|
|
[QUOTAS]
|
|
# resource name(s) that are supported in quota features
|
|
quota_items = network,subnet,port
|
|
|
|
# default number of resource allowed per tenant, minus for unlimited
|
|
default_quota = -1
|
|
|
|
# number of networks allowed per tenant, and minus means unlimited
|
|
# quota_network = 10
|
|
|
|
# number of subnets allowed per tenant, and minus means unlimited
|
|
# quota_subnet = 10
|
|
|
|
# number of ports allowed per tenant, and minus means unlimited
|
|
# quota_port = 50
|
|
|
|
# default driver to use for quota checks
|
|
# quota_driver = quantum.quota.ConfDriver
|
|
quota_driver = quantum.db.quota_db.DbQuotaDriver
|