Tidy README a bit

This commit is contained in:
James Page 2017-01-27 14:47:50 +00:00
parent e83c2f07e5
commit c44f547545
1 changed files with 18 additions and 11 deletions

View File

@ -1,24 +1,31 @@
# Overview
This subordinate charm provides ...
This subordinate charm provides a LDAP domain backend for integrating a
Keystone v3 deployment with an external LDAP based authentication system.
# Usage
With the OpenStack nova-compute and neutron-gateway charms:
Use this charm with the Keystone charm, running with preferred-api-version=3:
juju deploy ...
juju deploy neutron-gateway
juju add-relation nova-compute ...
juju add-relation neutron-gateway ...
juju deploy keystone
juju config keystone preferred-api-version=3
juju deploy keystone-ldap
juju add-relation keystone-ldap keystone
# Configuration Options
This charm will optionally configure the local ip address of the OVS instance to something other than the 'private-address' provided by Juju:
LDAP configuration is provided to this charm via configuration options:
juju set ... os-data-network=10.20.3.0/21
juju config keystone-ldap ldap-server="ldap://10.10.10.10/" \
ldap-user="cn=admin,dc=test,dc=com" \
ldap-password="password" \
ldap-suffix="dc=test,dc=com"
by default, the name of the application ('keystone-ldap') is the name of
the domain for which a domain specific configuration will be configured;
you can change this using the domain-name option:
# Restrictions
juju config keystone-ldap domain-name="myorganisationname"
The keystone charm will automatically create a domain to support the backend
once deployed.