![OpenDev Sysadmins](/assets/img/avatar_default.png)
This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have.
Overview
This interface layer handles the communication with Keystone via the 'keystone-domain-backend' interface protocol.
Usage
Provides
The interface layer will set the following state:
{relation_name}.connected
The relation is established.
For example:
from charms.reactive import when
@when('domain-backend.connected')
@when('configuration.complete')
def configure_domain(domain):
domain.domain_name('mynewkeystonedomain')
domain.trigger_restart()
Typically a domain backend charm should validate that it
has sufficient and good configuration for the domain backend,
write its configuration to
/etc/keystone/domains/keystone.<domain-name>.conf
and then
trigger a restart of keystone using the trigger_restart
method of the inteface, supplying the domain name at this
point in time as well.
The keystone charm will create the domain in the keystone database, mapping to the underlying domain configuration on disk.
Description
Languages
Python
100%