From d5fd744409f05e92837554b8c2222ded82189c6b Mon Sep 17 00:00:00 2001 From: Vladislav Belogrudov Date: Wed, 21 Mar 2018 17:42:31 +0300 Subject: [PATCH] Swift configuration misses quotas to pass DefCore Swift configuration needs container and account quotas to pass 'OpenStack Powered' certification test suite Co-Authored-By: Alexander Reunov Change-Id: I7a31315754cbb46257d3d98379daa39d32205480 Closes-Bug: #1757451 --- ansible/roles/swift/templates/proxy-server.conf.j2 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ansible/roles/swift/templates/proxy-server.conf.j2 b/ansible/roles/swift/templates/proxy-server.conf.j2 index 746d293eac..efe81d32a8 100644 --- a/ansible/roles/swift/templates/proxy-server.conf.j2 +++ b/ansible/roles/swift/templates/proxy-server.conf.j2 @@ -10,7 +10,7 @@ log_level = INFO workers = {{ openstack_service_workers }} [pipeline:main] -pipeline = catch_errors gatekeeper healthcheck cache container_sync bulk tempurl ratelimit authtoken keystoneauth slo dlo {% if enable_ceilometer | bool %}ceilometer {% endif %}proxy-server +pipeline = catch_errors gatekeeper healthcheck cache container_sync bulk tempurl ratelimit authtoken keystoneauth container_quotas account_quotas slo dlo {% if enable_ceilometer | bool %}ceilometer {% endif %}proxy-server [app:proxy-server] use = egg:swift#proxy @@ -75,6 +75,12 @@ use = egg:swift#ratelimit [filter:gatekeeper] use = egg:swift#gatekeeper +[filter:account_quotas] +use = egg:swift#account_quotas + +[filter:container_quotas] +use = egg:swift#container_quotas + [filter:slo] use = egg:swift#slo