Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CN-1048, CN-1047] Add missing field descriptions #143

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading