add note about keystone / auth 2.0

This commit is contained in:
Jesse Andrews 2011-08-10 16:16:38 -07:00
parent 064a98bb72
commit 016dca2a82
1 changed files with 12 additions and 0 deletions

View File

@ -141,6 +141,18 @@ By way of a quick-start::
>>> s.delete()
Quick-start using keystone::
# use v2.0 auth with http://example.com:5000/v2.0/")
>>> from novaclient.v1_1 import client
>>> nt = client.Client(USER, PASS, TENANT, AUTH_URL)
>>> nt.flavors.list()
[...]
>>> nt.servers.list()
[...]
>>> nt.keypairs.list()
[...]
What's new?
-----------