6161c7aa85
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
81 lines
2.4 KiB
INI
81 lines
2.4 KiB
INI
# Default minimal pipeline
|
|
[pipeline:heat-api]
|
|
pipeline = versionnegotiation context apiv1app
|
|
|
|
# Use the following pipeline for keystone auth
|
|
# i.e. in heat-api.conf:
|
|
# [paste_deploy]
|
|
# flavor = keystone
|
|
#
|
|
[pipeline:heat-api-keystone]
|
|
pipeline = versionnegotiation authtoken auth-context apiv1app
|
|
|
|
# Use the following pipeline to enable transparent caching of image files
|
|
# i.e. in heat-api.conf:
|
|
# [paste_deploy]
|
|
# flavor = caching
|
|
#
|
|
[pipeline:heat-api-caching]
|
|
pipeline = versionnegotiation context cache apiv1app
|
|
|
|
# Use the following pipeline for keystone auth with caching
|
|
# i.e. in heat-api.conf:
|
|
# [paste_deploy]
|
|
# flavor = keystone+caching
|
|
#
|
|
[pipeline:heat-api-keystone+caching]
|
|
pipeline = versionnegotiation authtoken auth-context cache apiv1app
|
|
|
|
# Use the following pipeline to enable the Image Cache Management API
|
|
# i.e. in heat-api.conf:
|
|
# [paste_deploy]
|
|
# flavor = cachemanagement
|
|
#
|
|
[pipeline:heat-api-cachemanagement]
|
|
pipeline = versionnegotiation context cache cachemanage apiv1app
|
|
|
|
# Use the following pipeline for keystone auth with cache management
|
|
# i.e. in heat-api.conf:
|
|
# [paste_deploy]
|
|
# flavor = keystone+cachemanagement
|
|
#
|
|
[pipeline:heat-api-keystone+cachemanagement]
|
|
pipeline = versionnegotiation authtoken auth-context cache cachemanage apiv1app
|
|
|
|
[app:apiv1app]
|
|
paste.app_factory = heat.common.wsgi:app_factory
|
|
heat.app_factory = heat.api.v1:API
|
|
|
|
[filter:versionnegotiation]
|
|
paste.filter_factory = heat.common.wsgi:filter_factory
|
|
heat.filter_factory = heat.api.middleware.version_negotiation:VersionNegotiationFilter
|
|
|
|
[filter:cache]
|
|
paste.filter_factory = heat.common.wsgi:filter_factory
|
|
heat.filter_factory = heat.api.middleware.cache:CacheFilter
|
|
|
|
[filter:cachemanage]
|
|
paste.filter_factory = heat.common.wsgi:filter_factory
|
|
heat.filter_factory = heat.api.middleware.cache_manage:CacheManageFilter
|
|
|
|
[filter:context]
|
|
paste.filter_factory = heat.common.wsgi:filter_factory
|
|
heat.filter_factory = heat.common.context:ContextMiddleware
|
|
|
|
[filter:authtoken]
|
|
paste.filter_factory = keystone.middleware.auth_token:filter_factory
|
|
service_protocol = http
|
|
service_host = 127.0.0.1
|
|
service_port = 5000
|
|
auth_host = 127.0.0.1
|
|
auth_port = 35357
|
|
auth_protocol = http
|
|
auth_uri = http://127.0.0.1:5000/
|
|
admin_tenant_name = %SERVICE_TENANT_NAME%
|
|
admin_user = %SERVICE_USER%
|
|
admin_password = %SERVICE_PASSWORD%
|
|
|
|
[filter:auth-context]
|
|
paste.filter_factory = heat.common.wsgi:filter_factory
|
|
heat.filter_factory = keystone.middleware.heat_auth_token:KeystoneContextMiddleware
|