summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-cinder
diff options
context:
space:
mode:
authorMihai Prica <prica.mihai@gmail.com>2013-07-15 13:50:33 +0300
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-08-28 18:41:58 -0400
commitf5e9ca889942455d8bfcbc49824dd475d547cd38 (patch)
tree4154c024c39fe5875e1d5d8ad0a8e66bf5dd30b4 /meta-openstack/recipes-devtools/python/python-cinder
parent9483378e842c07245ea1a478461621a3930b6c58 (diff)
downloadmeta-cloud-services-f5e9ca889942455d8bfcbc49824dd475d547cd38.tar.gz
python-cinder: Use the identity to get credentials
The credentials are defined in the identity bbclass and the recipe will set them in the configuration files. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-cinder')
-rw-r--r--meta-openstack/recipes-devtools/python/python-cinder/api-paste.ini62
1 files changed, 0 insertions, 62 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-cinder/api-paste.ini b/meta-openstack/recipes-devtools/python/python-cinder/api-paste.ini
deleted file mode 100644
index 69cf346..0000000
--- a/meta-openstack/recipes-devtools/python/python-cinder/api-paste.ini
+++ /dev/null
@@ -1,62 +0,0 @@
1#############
2# OpenStack #
3#############
4
5[composite:osapi_volume]
6use = call:cinder.api:root_app_factory
7/: apiversions
8/v1: openstack_volume_api_v1
9/v2: openstack_volume_api_v2
10
11[composite:openstack_volume_api_v1]
12use = call:cinder.api.middleware.auth:pipeline_factory
13noauth = faultwrap sizelimit noauth apiv1
14keystone = faultwrap sizelimit authtoken keystonecontext apiv1
15keystone_nolimit = faultwrap sizelimit authtoken keystonecontext apiv1
16
17[composite:openstack_volume_api_v2]
18use = call:cinder.api.middleware.auth:pipeline_factory
19noauth = faultwrap sizelimit noauth apiv2
20keystone = faultwrap sizelimit authtoken keystonecontext apiv2
21keystone_nolimit = faultwrap sizelimit authtoken keystonecontext apiv2
22
23[filter:faultwrap]
24paste.filter_factory = cinder.api.middleware.fault:FaultWrapper.factory
25
26[filter:noauth]
27paste.filter_factory = cinder.api.middleware.auth:NoAuthMiddleware.factory
28
29[filter:sizelimit]
30paste.filter_factory = cinder.api.middleware.sizelimit:RequestBodySizeLimiter.factory
31
32[app:apiv1]
33paste.app_factory = cinder.api.v1.router:APIRouter.factory
34
35[app:apiv2]
36paste.app_factory = cinder.api.v2.router:APIRouter.factory
37
38[pipeline:apiversions]
39pipeline = faultwrap osvolumeversionapp
40
41[app:osvolumeversionapp]
42paste.app_factory = cinder.api.versions:Versions.factory
43
44##########
45# Shared #
46##########
47
48[filter:keystonecontext]
49paste.filter_factory = cinder.api.middleware.auth:CinderKeystoneContext.factory
50
51[filter:authtoken]
52paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
53service_protocol = http
54service_host = 127.0.0.1
55service_port = 5000
56auth_host = 127.0.0.1
57auth_port = 35357
58auth_protocol = http
59admin_tenant_name = service
60admin_user = cinder
61admin_password = password
62signing_dir = /var/lib/cinder