b67bd60df3
The Cloudkitty role has been lacking some attention for a while causing some of the configuration and examples outdated. Now that Cloudkitty playbook and dashboard can be installed using OSA without running any additional playbooks from this repository i have removed those from here. Change-Id: I0fe96c318273f0016d93cf043bda74feb11c63f8
31 lines
926 B
Django/Jinja
31 lines
926 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[pipeline:cloudkitty+noauth]
|
|
pipeline = cors healthcheck http_proxy_to_wsgi request_id ck_api
|
|
|
|
[pipeline:cloudkitty+keystone]
|
|
pipeline = cors healthcheck http_proxy_to_wsgi request_id authtoken ck_api
|
|
|
|
[app:ck_api]
|
|
paste.app_factory = cloudkitty.api.app:app_factory
|
|
|
|
[filter:authtoken]
|
|
acl_public_routes = /, /v1, /healthcheck
|
|
paste.filter_factory = cloudkitty.api.middleware:AuthTokenMiddleware.factory
|
|
|
|
[filter:request_id]
|
|
paste.filter_factory = oslo_middleware:RequestId.factory
|
|
|
|
[filter:cors]
|
|
paste.filter_factory = oslo_middleware.cors:filter_factory
|
|
oslo_config_project = cloudkitty
|
|
|
|
[filter:healthcheck]
|
|
paste.filter_factory = oslo_middleware:Healthcheck.factory
|
|
backends = disable_by_file
|
|
disable_by_file_path = /etc/cloudkitty/healthcheck_disable
|
|
|
|
[filter:http_proxy_to_wsgi]
|
|
paste.filter_factory = oslo_middleware.http_proxy_to_wsgi:HTTPProxyToWSGI.factory
|
|
oslo_config_project = cloudkitty
|