
Adds basic skeleton/structure with stubs. Changes are done as per Roger Luethi's scripts. These changes are done to incorporate various features like logging, multi-os setup etc. These scripts may also target more virtualization products like KVM, LXC down the roadmap. blueprint openstack-training-labs Change-Id: I0bb33b518080f8a9b9c0e1624f43a66337eb8278
31 lines
867 B
INI
31 lines
867 B
INI
[composite:quantum]
|
|
use = egg:Paste#urlmap
|
|
/: quantumversions
|
|
/v2.0: quantumapi_v2_0
|
|
|
|
[composite:quantumapi_v2_0]
|
|
use = call:quantum.auth:pipeline_factory
|
|
noauth = extensions quantumapiapp_v2_0
|
|
keystone = authtoken keystonecontext extensions quantumapiapp_v2_0
|
|
|
|
[filter:keystonecontext]
|
|
paste.filter_factory = quantum.auth:QuantumKeystoneContext.factory
|
|
|
|
[filter:authtoken]
|
|
paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
|
|
auth_host = 10.10.10.51
|
|
auth_port = 35357
|
|
auth_protocol = http
|
|
admin_tenant_name = service
|
|
admin_user = quantum
|
|
admin_password = service_pass
|
|
|
|
[filter:extensions]
|
|
paste.filter_factory = quantum.api.extensions:plugin_aware_extension_middleware_factory
|
|
|
|
[app:quantumversions]
|
|
paste.app_factory = quantum.api.versions:Versions.factory
|
|
|
|
[app:quantumapiapp_v2_0]
|
|
paste.app_factory = quantum.api.v2.router:APIRouter.factory
|