]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Make sample quantum.conf compliant with docs
authorFrancisco Souza <f@souza.cc>
Thu, 12 Apr 2012 12:32:50 +0000 (09:32 -0300)
committerFrancisco Souza <f@souza.cc>
Thu, 26 Apr 2012 23:48:01 +0000 (20:48 -0300)
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

etc/quantum.conf

index d9adc180a6779bb7aec1467f97fcbcb1e6ad1cfd..9903f086bdee402b1db997e457c07aa974abae60 100644 (file)
@@ -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 = <token-value>
+# 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