Skip to content

Commit 3b84516

Browse files
committed
document 'tlsCertSecretName' param
1 parent 2a65997 commit 3b84516

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/partials/replicated-sdk/_sdk-values.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,15 @@ These `replicated` values can be referenced by the application or set during ins
2727
For the default Replicated SDK Helm chart values file, see [values.yaml](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml) in the [replicated-sdk](https://github.com/replicatedhq/replicated-sdk) repository in GitHub.
2828

2929
The SDK Helm values also include a `replicated.license` field, which is a string that contains the YAML representation of the customer license. For more information about the built-in fields in customer licenses, see [Built-In License Fields](licenses-using-builtin-fields).
30+
31+
### Enabling SSL
32+
33+
To configure the Replicated SDK pod to serve traffic over SSL, ensure a secret exists in the namespace with keys `tls.crt` and `tls.key` containing the TLS certificate and key.
34+
This is the format produced by `kubectl create secret tls <secret_name> --cert=<cert_file> --key=<key_file>`.
35+
Then, set `tlsCertSecretName` to the name of the secret.
36+
37+
```yaml
38+
# values.yaml
39+
40+
tlsCertSecretName: my-tls-secret
41+
```

0 commit comments

Comments
 (0)