Skip to content

Commit 8304082

Browse files
authored
Update replicated-sdk-customizing.md
1 parent 5589195 commit 8304082

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

docs/vendor/replicated-sdk-customizing.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -252,13 +252,17 @@ replicated:
252252

253253
With the Replicated SDK version 1.6.0 and later, you can serve traffic from the Replicated SDK pod by setting the `replicated.tlsCertSecretName` Helm value in your Helm chart.
254254

255-
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.
255+
To configure the Replicated SDK pod to serve traffic over SSL:
256+
257+
1. Ensure a secret exists in the namespace with keys `tls.crt` and `tls.key` containing the TLS certificate and key.
256258
This is the format produced by `kubectl create secret tls <secret_name> --cert=<cert_file> --key=<key_file>`.
257-
Then, set `tlsCertSecretName` to the name of the secret.
258259

259-
```yaml
260-
# Helm chart values.yaml
260+
1. Set `tlsCertSecretName` to the name of the secret, as shown below:
261261

262-
replicated:
263-
tlsCertSecretName: my-tls-secret
264-
```
262+
```yaml
263+
# Helm chart values.yaml
264+
265+
replicated:
266+
tlsCertSecretName: YOUR_TLS_SECRET
267+
```
268+
Where `YOUR_TLS_SECRET` is the secret in the namespace containing the TLS certificate and key.

0 commit comments

Comments
 (0)