Removes KVS references from the documentation

KVS backends are deprecated and removing references to them from the
documentation will discourage their use.

Change-Id: Iad2f9c39f9d92465ada5ecb6001cfc2b225cc01f
Related-Bug: #986980
This commit is contained in:
David Stanek 2013-08-28 19:45:07 -04:00
parent a701908952
commit ceb017071d
4 changed files with 3 additions and 15 deletions

View File

@ -131,16 +131,6 @@ expected to subclass from these classes. The default response for the defined
apis in these Drivers is to raise a :mod:`keystone.service.TokenController`.
KVS Backend
-----------
A simple backend interface meant to be further backended on anything that can
support primary key lookups, the most trivial implementation being an in-memory
dict.
Supports all features of the general data model.
SQL Backend
-----------

View File

@ -1157,8 +1157,8 @@ example::
Removing Expired Tokens
===========================================================
In the SQL and KVS token stores expired tokens are not automatically
removed. These tokens can be removed with::
In the SQL backend expired tokens are not automatically removed. These tokens
can be removed with::
$ keystone-manage token_flush

View File

@ -48,8 +48,7 @@ To run the keystone Admin and API server instances, use::
this runs keystone with the configuration the etc/ directory of the project.
See :doc:`configuration` for details on how Keystone is configured. By default,
keystone is configured with KVS backends, so any data entered into keystone run
in this fashion will not persist across restarts.
keystone is configured with SQL backends.
Interacting with Keystone

View File

@ -274,7 +274,6 @@ class V3TokenDataHelper(object):
try:
service_catalog = self.catalog_api.get_v3_catalog(
user_id, project_id)
# TODO(ayoung): KVS backend needs a sample implementation
except exception.NotImplemented:
service_catalog = {}
# TODO(gyee): v3 service catalog is not quite completed yet