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-1355]: Add mutual auth information to docs #255

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Changes from 2 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
19 changes: 14 additions & 5 deletions docs/modules/ROOT/pages/tls.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,21 @@ Below are the configuration options for the TLS.
|`secretName`
| Specifies the name of Kubernetes TLS secret.

|`mutualAuthentication`
| Mutual authentication configuration, available values are:

- `None` (default): The client side of the connection is not authenticated.
- `Required`: Server forces usage of a trusted client certificate
- `Optional`: Server asks for a client certificate, but it doesn't require it

|`clientAuthentication`
| Mutual authentication configuration for client to member communication, available values are:

- `None` (default): The client side of the connection is not authenticated.
- `Required`: Server forces usage of a trusted client certificate.
- `Optional`: Server asks for a client certificate, but it doesn't require it.

|`memberAuthentication`
| Mutual authentication configuration for member to member communication, available values are:

- `None` (default): The client side of the connection is not authenticated.
- `Required`: Server forces usage of a trusted client certificate.
- `Optional`: Server asks for a client certificate, but it doesn't require it.

|===

Expand Down
Loading