~ubuntu-branches/ubuntu/quantal/glance/quantal

« back to all changes in this revision

Viewing changes to doc/source/authentication.rst

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Adam Gandleman
  • Date: 2012-01-26 09:22:37 UTC
  • mfrom: (1.1.25)
  • Revision ID: package-import@ubuntu.com-20120126092237-3wvlfjtg0ut3231r
Tags: 2012.1~e3-0ubuntu1
[Chuck Short]
* New upstream version.
* debian/control: Add python-crypto as a build dependency.

[Adam Gandleman]
* debian/glance-api.install: Add policy.json

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
  OS_AUTH_URL=<THIS SHOULD POINT TO KEYSTONE>
85
85
  OS_AUTH_STRATEGY=keystone
86
86
 
 
87
Alternatively, these credentials may be specified using the following
 
88
switches to the ``bin/glance`` command:
 
89
 
 
90
  -I USER, --username=USER
 
91
                        User name used to acquire an authentication token
 
92
  -K PASSWORD, --password=PASSWORD
 
93
                        Password used to acquire an authentication token
 
94
  -T TENANT, --tenant=TENANT
 
95
                        Tenant name
 
96
  -N AUTH_URL, --auth_url=AUTH_URL
 
97
                        Authentication URL
 
98
  -S STRATEGY, --auth_strategy=STRATEGY
 
99
                        Authentication strategy (keystone or noauth)
 
100
 
 
101
Or, if a pre-authenticated token is preferred, the following option allows
 
102
the client-side interaction with keystone to be by-passed (useful if a long
 
103
sequence of commands is being scripted):
 
104
 
 
105
  -A TOKEN, --auth_token=TOKEN
 
106
                        Authentication token to use to identify the client to
 
107
                        the glance server
 
108
 
 
109
In general the command line switch takes precedence over the corresponding
 
110
OS_AUTH_* environment variable, if both are set.
 
111
 
 
112
 
87
113
Configuring the Glance servers to use Keystone
88
114
----------------------------------------------
89
115