glance.common.auth module¶
This auth module is intended to allow OpenStack client-tools to select from a variety of authentication strategies, including NoAuth (the default), and Keystone (an identity management system).
> auth_plugin = AuthPlugin(creds)
> auth_plugin.authenticate()
> auth_plugin.auth_token
abcdefg
- class glance.common.auth.BaseStrategy[source]¶
Bases:
object- property is_authenticated¶
- property strategy¶
- class glance.common.auth.KeystoneStrategy(creds, insecure=False)[source]¶
Bases:
BaseStrategy- MAX_REDIRECTS = 10¶
- authenticate()[source]¶
Authenticate with the Keystone service.
There are a few scenarios to consider here:
Which version of Keystone are we using? v1 which uses headers to pass the credentials, or v2 which uses a JSON encoded request body?
Keystone may respond back with a redirection using a 305 status code.
We may attempt a v1 auth when v2 is what’s called for. In this case, we rewrite the url to contain /v2.0/ and retry using the v2 protocol.
- property is_authenticated¶
- property strategy¶
- class glance.common.auth.NoAuthStrategy[source]¶
Bases:
BaseStrategy- property is_authenticated¶
- property strategy¶