diff options
| author | Mihai Prica <prica.mihai@gmail.com> | 2013-07-15 13:50:33 +0300 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-08-28 18:41:58 -0400 |
| commit | f5e9ca889942455d8bfcbc49824dd475d547cd38 (patch) | |
| tree | 4154c024c39fe5875e1d5d8ad0a8e66bf5dd30b4 /meta-openstack/recipes-devtools/python/python-cinder | |
| parent | 9483378e842c07245ea1a478461621a3930b6c58 (diff) | |
| download | meta-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.ini | 62 |
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] | ||
| 6 | use = 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] | ||
| 12 | use = call:cinder.api.middleware.auth:pipeline_factory | ||
| 13 | noauth = faultwrap sizelimit noauth apiv1 | ||
| 14 | keystone = faultwrap sizelimit authtoken keystonecontext apiv1 | ||
| 15 | keystone_nolimit = faultwrap sizelimit authtoken keystonecontext apiv1 | ||
| 16 | |||
| 17 | [composite:openstack_volume_api_v2] | ||
| 18 | use = call:cinder.api.middleware.auth:pipeline_factory | ||
| 19 | noauth = faultwrap sizelimit noauth apiv2 | ||
| 20 | keystone = faultwrap sizelimit authtoken keystonecontext apiv2 | ||
| 21 | keystone_nolimit = faultwrap sizelimit authtoken keystonecontext apiv2 | ||
| 22 | |||
| 23 | [filter:faultwrap] | ||
| 24 | paste.filter_factory = cinder.api.middleware.fault:FaultWrapper.factory | ||
| 25 | |||
| 26 | [filter:noauth] | ||
| 27 | paste.filter_factory = cinder.api.middleware.auth:NoAuthMiddleware.factory | ||
| 28 | |||
| 29 | [filter:sizelimit] | ||
| 30 | paste.filter_factory = cinder.api.middleware.sizelimit:RequestBodySizeLimiter.factory | ||
| 31 | |||
| 32 | [app:apiv1] | ||
| 33 | paste.app_factory = cinder.api.v1.router:APIRouter.factory | ||
| 34 | |||
| 35 | [app:apiv2] | ||
| 36 | paste.app_factory = cinder.api.v2.router:APIRouter.factory | ||
| 37 | |||
| 38 | [pipeline:apiversions] | ||
| 39 | pipeline = faultwrap osvolumeversionapp | ||
| 40 | |||
| 41 | [app:osvolumeversionapp] | ||
| 42 | paste.app_factory = cinder.api.versions:Versions.factory | ||
| 43 | |||
| 44 | ########## | ||
| 45 | # Shared # | ||
| 46 | ########## | ||
| 47 | |||
| 48 | [filter:keystonecontext] | ||
| 49 | paste.filter_factory = cinder.api.middleware.auth:CinderKeystoneContext.factory | ||
| 50 | |||
| 51 | [filter:authtoken] | ||
| 52 | paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory | ||
| 53 | service_protocol = http | ||
| 54 | service_host = 127.0.0.1 | ||
| 55 | service_port = 5000 | ||
| 56 | auth_host = 127.0.0.1 | ||
| 57 | auth_port = 35357 | ||
| 58 | auth_protocol = http | ||
| 59 | admin_tenant_name = service | ||
| 60 | admin_user = cinder | ||
| 61 | admin_password = password | ||
| 62 | signing_dir = /var/lib/cinder | ||
