You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `customCa` block allows you to provide a custom Certificate Authority (CA) certificate to the application. This is optional — if no values are provided, no custom CA will be used.
5
+
6
+
> [!NOTE]
7
+
> The certificate is loaded by Keycloak and required when using LDAP integration with a custom CA certificate.
8
+
9
+
10
+
```yaml
11
+
secrets:
12
+
customCa:
13
+
customCaCertificate: ""# Base64-encoded CA certificate content.
14
+
existingCaSecret: ""# Name of an existing Kubernetes secret containing the CA certificate.
15
+
```
16
+
17
+
### Option 1: Provide the CA certificate directly
18
+
19
+
Use `customCaCertificate` to provide the base64-encoded content of your CA certificate.
20
+
A new Kubernetes Secret will be automatically created by the Helm chart.
0 commit comments