From: Francisco Souza Date: Thu, 12 Apr 2012 12:32:50 +0000 (-0300) Subject: Make sample quantum.conf compliant with docs X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=1ec96cfc8441b71bfb24f20d7c4a6c9bf584e158;p=openstack-build%2Fneutron-build.git Make sample quantum.conf compliant with docs The module quantum_auth_token does not exist. Also, the documentation uses authtoken instead of authN. The docs, for reference: http://docs.openstack.org/incubation/openstack-network/admin/content/configuring-keystone-with-quantum.html Change-Id: I5a225dd740bb654a0b27937ebfa68f0ef6bff4f8 --- diff --git a/etc/quantum.conf b/etc/quantum.conf index d9adc180a..9903f086b 100644 --- a/etc/quantum.conf +++ b/etc/quantum.conf @@ -26,27 +26,30 @@ use = egg:Paste#urlmap [pipeline:quantumapi_v1_0] # By default, authentication is disabled. -# To enable Keystone integration uncomment the -# following line and comment the next one +# To enable Keystone integration comment out the +# following line and uncomment the next one pipeline = extensions quantumapiapp_v1_0 -#pipeline = authN extensions quantumapiapp_v1_0 +# pipeline = authtoken extensions quantumapiapp_v1_0 [pipeline:quantumapi_v1_1] # By default, authentication is disabled. -# To enable Keystone integration uncomment the -# following line and comment the next one +# To enable Keystone integration comment out the +# following line and uncomment the next one pipeline = extensions quantumapiapp_v1_1 -#pipeline = authN extensions quantumapiapp_v1_1 +# pipeline = authtoken extensions quantumapiapp_v1_1 -[filter:authN] -paste.filter_factory = keystone.middleware.quantum_auth_token:filter_factory +[filter:authtoken] +paste.filter_factory = keystone.middleware.auth_token:filter_factory auth_host = 127.0.0.1 auth_port = 35357 auth_protocol = http -auth_version = 2.0 -auth_admin_user = admin -auth_admin_password = secrete -#auth_admin_token = +# auth_uri = http://127.0.0.1:5000/ +admin_tenant_name = service +admin_user = nova +admin_password = sp +# admin_token = 9a82c95a-99e9-4c3a-b5ee-199f6ba7ff04 +# memcache_servers = 127.0.0.1:11211 +# token_cache_time = 300 [filter:extensions] paste.filter_factory = quantum.extensions.extensions:plugin_aware_extension_middleware_factory