Charm Interface - Keystone Admin
Go to file
Doug Hellmann 8551467d3e fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: Ib69685e5b0c503603d7c6dedb5a5f4e6441ac901
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2018-10-04 12:42:06 +00:00
.gitignore Enable Keystone v3 2017-10-13 13:19:27 -07:00
.gitreview Enable Keystone v3 2017-10-13 13:19:27 -07:00
README.md README included 2016-03-16 11:19:20 +01:00
copyright requires keystone-admin:identity-admin 2016-03-08 13:58:25 +01:00
interface.yaml requires keystone-admin:identity-admin 2016-03-08 13:58:25 +01:00
requires.py Enable Keystone v3 2017-10-13 13:19:27 -07:00
test-requirements.txt requires keystone-admin:identity-admin 2016-03-08 13:58:25 +01:00
tox.ini fix tox python3 overrides 2018-10-04 12:42:06 +00:00

README.md

keystone-admin interface

Use this interface to use keystone credentials in your charm layers.

Purpose

By relating you charm layer (keystone-admin:identity-admin) with keystone service, keystone's API endpoint as well as username, password and region name will be shared.

How to use in your layers

The event handler for identity-admin.connected is called when a relation is established between your charm layer and keystone.

In case there are no unset shared data (ie: service_password), a new event handler will be set: identity-admin.available.

This object provides a method,

credentials()

returing a dict of:

        {u'service_password': u'XXXXXXXX',
         u'service_port': u'5000',
         u'service_hostname': u'10.XX.XX.XXX',
         u'service_username': u'admin',
         u'service_tenant_name': u'Admin',
         u'service_region': u'RegionOne'}

metadata.yaml

requires:
  identity-admin:
    interface: keystone-admin

layer.yaml,

includes: ['layer:basic', 'interface:keystone-admin']

charm layer example,

@when('identity-admin.available')
def setup_openstack_plugin(kst_data):
    creds = kst_data.credentials()
    if data_changed('identity-admin.config', creds):
        settings = {'keystone_vip': creds['service_hostname'],
                    'keystone_port': creds['service_port'],
                    'username': creds['service_username'],
                    'password': creds['service_password'],
                    'tenant_name': creds['service_tenant_name'],
        }

Example deployment

$ juju deploy your-awesome-charm
$ juju deploy keystone --config keystone-creds.yaml
$ juju deploy mysql
$ juju add-relation keystone mysql
$ juju add-relation your-awesome-charm keystone

where keystone-creds.yaml has the necessary configuration settings for your awesome charm to connect to keystone.