diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-09 15:43:30 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-09 15:43:30 -0500 |
commit | 35c3b7d15cfac7da748382dc4ad429ca78e7c74e (patch) | |
tree | cf3e4a24f612ff07f85f952668826b09cc07246d /inventory | |
parent | 70ed54c75a04bc08f846ac5155400c459021eeac (diff) | |
parent | ac984b64622dbee0489c0e5a8061f013fa770bf9 (diff) | |
download | openshift-35c3b7d15cfac7da748382dc4ad429ca78e7c74e.tar.gz openshift-35c3b7d15cfac7da748382dc4ad429ca78e7c74e.tar.bz2 openshift-35c3b7d15cfac7da748382dc4ad429ca78e7c74e.tar.xz openshift-35c3b7d15cfac7da748382dc4ad429ca78e7c74e.zip |
Merge pull request #852 from abutcher/ldap-example
Add ldap auth to example inventory
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/byo/hosts.example | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inventory/byo/hosts.example b/inventory/byo/hosts.example index f124be368..56bbb9612 100644 --- a/inventory/byo/hosts.example +++ b/inventory/byo/hosts.example @@ -42,6 +42,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Allow all auth #openshift_master_identity_providers=[{'name': 'allow_all', 'login': 'true', 'challenge': 'true', 'kind': 'AllowAllPasswordIdentityProvider'}] +# LDAP auth +#openshift_master_identity_providers=[{'name': 'my_ldap_provider', 'challenge': 'true', 'login': 'true', 'kind': 'LDAPPasswordIdentityProvider', 'attributes': {'id': ['dn'], 'email': ['mail'], 'name': ['cn'], 'preferredUsername': ['uid']}, 'bindDN': '', 'bindPassword': '', 'ca': '', 'insecure': 'false', 'url': 'ldap://ldap.example.com:389/ou=users,dc=example,dc=com?uid'}] + # Project Configuration #osm_project_request_message='' #osm_project_request_template='' |