428e6b75a7
This change adds versions to the setup.cfg files of all the contrib plugins, so that pbr can determine the plugin version when the plugins are installed with pip. Because contrib plugins are not officially supported, a version of 0.1 is used. Change-Id: I7e55d7d018ecdbb878a22b236d75ecf87f7e3ed6 Closes-Bug: #1428879 |
||
---|---|---|
.. | ||
heat_keystoneclient_v2 | ||
README.md | ||
setup.cfg | ||
setup.py |
Heat Keystone V2
This plugin is a Keystone V2 compatible client. It can be used to replace the default client for clouds running older versions of Keystone.
Some forward compatibility decisions had to be made:
- Stack domain users are created as users on the stack owner's tenant rather than the stack's domain
- Trusts are not supported
Installation
-
From this directory run: sudo python ./setup.py install
-
Set the
keystone_backend
option toheat.engine.plugins.heat_keystoneclient_v2.client.KeystoneClientV2
How it works
By setting the keystone_backend
option, the KeystoneBackend class in
heat/common/heat_keystoneclient.py
will instantiate the plugin
KeystoneClientV2 class and use that instead of the default client in
heat/common/heat_keystoneclient.py
.