7cbdf4b590
Drops the 'from git' from many of the elements. This implies that the elements always use git... which they don't if you are using packages. Also, expands many of the descriptions to say 'and configures' since most of these elements also contain the OAC/ORC scripts to actually configure things as well. Change-Id: I3cbf80c99cfedd73770c9d24e140b7d2443f0dda |
||
---|---|---|
.. | ||
environment.d | ||
install.d | ||
os-apply-config | ||
os-refresh-config | ||
cleanup-keystone-tokens.sh | ||
element-deps | ||
keystone.crontab | ||
pkg-map | ||
README.md | ||
source-repository-keystone |
Install and configure Keystone.
Upon booting the image, the service should be running on port 5000.
Configuration
Default template for /etc/keystone/keystone.conf file contains minimal set of configuration parameters, which are expected to be passed in with Heat Metadata. For example, keystone.db key is required to provide MySQL connection string:
keystone:
db: "mysql://keyuser:keypass@localhost/keystone"
All customizations to /etc/keystone/keystone.conf are expected to be done using passthrough configuration feature.
Additional configuration file /etc/keystone/domains/keystone.ldap.conf is also maintained to provide domain-specific configuration for LDAP. This file is also populated using passthrough configuration feature with "keystone_ldap" key. Here is a sample content for ExtraConfig Heat Metadata parameter:
{
"keystone": {
"config": [
{
"section": "identity",
"values": [
{
"option": "domain_specific_drivers_enabled",
"value": "True"
},
{
"option": "domain_config_dir",
"value": "/etc/keystone/domains"
}
]
}
]
},
"keystone_ldap": {
"config": [
{
"section": "identity",
"values": [
{
"option": "driver",
"value": "keystone.identity.backends.ldap.Identity"
}
]
},
{
"section": "assignment",
"values": [
{
"option": "driver",
"value": "keystone.assignment.backends.sql.Assignment"
}
]
},
{
"section": "ldap",
"values": [
{
"option": "url",
"value": "ldap://ldap.example.com"
},
{
"option": "suffix",
"value": "dc=example,dc=com"
},
. . .
]
}
]
}
}
NOTE: Token cleanup will cause poor performance until the upstream bug (https://bugs.launchpad.net/keystone/+bug/1188378) is fixed. This problem is fixed in some distributions (Ubuntu, RHEL, CentOS) where percona-toolkit's is supported and used to clean out the table on mysql. http://www.percona.com/mysql-support/policies/percona-toolkit-supported-platforms-and-versions