Skip to content

Commit

Permalink
[CN-1048, CN-1047] Add missing field descriptions (#143)
Browse files Browse the repository at this point in the history
* Add URL field description

* Fix typo
  • Loading branch information
cagric0 authored Nov 1, 2023
1 parent f3f2c5b commit 41d3f0a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/examples/management-center-ldap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ spec:
securityProvider:
ldap:
credentialsSecretName: ldap-credentianls
groupDn: ou=users,dc=example,dc=org
groupDN: ou=users,dc=example,dc=org
groupSearchFilter: member={0}
nestedGroupSearch: false
url: ldap://ldap-server-url:1389
userDn: ou=users,dc=example,dc=org
userDN: ou=users,dc=example,dc=org
userGroups:
- users
metricsOnlyGroups:
Expand Down
7 changes: 5 additions & 2 deletions docs/modules/ROOT/pages/management-center-ldap.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ The following are the required fields to configure the LDAP Security provider.
|===
|Field|Description

|`url`
| URL of your LDAP server, including schema (ldap://) and port.

|`credentialsSecretName`
| The name of the secret that contains `username` and `password` keys of a user that has admin privileges on the LDAP server. The `username` must be the must be the distinguished name (DN) of the user. It is used to connect to the server when authenticating users.

|`userDn`
|`userDN`
| DN to be used for searching users.

|`groupDn`
|`groupDN`
| DN to be used for searching groups.

|`adminGroups`
Expand Down

0 comments on commit 41d3f0a

Please sign in to comment.