From 9f7c2f096c01253bc123f4ee54c29a89a27d909f Mon Sep 17 00:00:00 2001 From: Andy McCrae Date: Fri, 18 Nov 2016 09:17:19 +0000 Subject: [PATCH] Update paste, policy and rootwrap configurations 2016-11-18 Change-Id: Ia6b142211d96edd44e9b6373a6d1d8e6cfbc6070 --- templates/keystone-paste.ini.j2 | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/templates/keystone-paste.ini.j2 b/templates/keystone-paste.ini.j2 index 59fe2a5d..447cfe60 100644 --- a/templates/keystone-paste.ini.j2 +++ b/templates/keystone-paste.ini.j2 @@ -27,6 +27,9 @@ oslo_config_project = keystone [filter:http_proxy_to_wsgi] use = egg:oslo.middleware#http_proxy_to_wsgi +[filter:healthcheck] +use = egg:oslo.middleware#healthcheck + [filter:ec2_extension] use = egg:keystone#ec2_extension @@ -57,17 +60,17 @@ use = egg:keystone#admin_service [pipeline:public_api] # The last item in this pipeline must be public_service or an equivalent # application. It cannot be a filter. -pipeline = cors sizelimit http_proxy_to_wsgi osprofiler url_normalize request_id admin_token_auth build_auth_context token_auth json_body ec2_extension public_service +pipeline = healthcheck cors sizelimit http_proxy_to_wsgi osprofiler url_normalize request_id admin_token_auth build_auth_context token_auth json_body ec2_extension public_service [pipeline:admin_api] # The last item in this pipeline must be admin_service or an equivalent # application. It cannot be a filter. -pipeline = cors sizelimit http_proxy_to_wsgi osprofiler url_normalize request_id admin_token_auth build_auth_context token_auth json_body ec2_extension s3_extension admin_service +pipeline = healthcheck cors sizelimit http_proxy_to_wsgi osprofiler url_normalize request_id admin_token_auth build_auth_context token_auth json_body ec2_extension s3_extension admin_service [pipeline:api_v3] # The last item in this pipeline must be service_v3 or an equivalent # application. It cannot be a filter. -pipeline = cors sizelimit http_proxy_to_wsgi osprofiler url_normalize request_id admin_token_auth build_auth_context token_auth json_body ec2_extension_v3 s3_extension service_v3 +pipeline = healthcheck cors sizelimit http_proxy_to_wsgi osprofiler url_normalize request_id admin_token_auth build_auth_context token_auth json_body ec2_extension_v3 s3_extension service_v3 [app:public_version_service] use = egg:keystone#public_version_service @@ -76,10 +79,10 @@ use = egg:keystone#public_version_service use = egg:keystone#admin_version_service [pipeline:public_version_api] -pipeline = cors sizelimit osprofiler url_normalize public_version_service +pipeline = healthcheck cors sizelimit osprofiler url_normalize public_version_service [pipeline:admin_version_api] -pipeline = cors sizelimit osprofiler url_normalize admin_version_service +pipeline = healthcheck cors sizelimit osprofiler url_normalize admin_version_service [composite:main] use = egg:Paste#urlmap