heat/contrib/heat_keystoneclient_v2
Steve Baker bb4c915434 Do not specify version for contrib plugins
The pbr 0.11.0 release has shown that having multiple trees in a repo
each with their on version that is different to the git history is
really not going to work.

This change means that the version will be derived from git history,
which will still be useful for operators managing what version of a
plugin they have installed.

Running sudo python setup.py install (as documented) is known to work
with the latest pbr.

Change-Id: I716a5374bb283d11e26459b5866a0437ab6fe0dd
Closes-Bug: #1450733
2015-05-04 10:33:23 +12:00
..
heat_keystoneclient_v2 Pin the target keystone endpoint to the context auth url 2015-03-16 10:24:04 -05:00
README.md Use setuptools to install contrib plugins 2014-08-13 20:12:29 -05:00
setup.cfg Do not specify version for contrib plugins 2015-05-04 10:33:23 +12:00
setup.py Use setuptools to install contrib plugins 2014-08-13 20:12:29 -05:00

README.md

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

  1. From this directory run: sudo python ./setup.py install

  2. Set the keystone_backend option to heat.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.