98fcdc0d6f
Blueprint quantum-service-type This patch allows for managing service types through the API. The default service type is specified in the configuration file. The patch also provides a 'dummy' API extension, which uses the 'dummy' service plugin, as a PoC for usage of service type. The dummy API extension is used in unit tests only. Change-Id: I97d400b941fa7925b0efa0fd0d35c07419ff6bfa
30 lines
689 B
Plaintext
30 lines
689 B
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 = unit/extensions
|
|
|
|
# Paste configuration file
|
|
api_paste_config = api-paste.ini.test
|
|
|
|
# The messaging module to use, defaults to kombu.
|
|
rpc_backend = quantum.openstack.common.rpc.impl_fake
|
|
|
|
[DATABASE]
|
|
sql_connection = 'sqlite:///:memory:'
|
|
|
|
[DEFAULT_SERVICETYPE]
|
|
description = "default service type"
|
|
service_definition=dummy:quantum.tests.unit.dummy_plugin.QuantumDummyPlugin
|
|
|