Skip to content

Commit 5589195

Browse files
committed
move to customizing
1 parent 3b84516 commit 5589195

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,3 @@ 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-
```

docs/vendor/replicated-sdk-customizing.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,19 @@ replicated:
246246
podLabels:
247247
monitoring: enabled
248248
custom.company.io/pod-label: value
249-
```
249+
```
250+
251+
## Enable SSL
252+
253+
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.
254+
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.
256+
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.
258+
259+
```yaml
260+
# Helm chart values.yaml
261+
262+
replicated:
263+
tlsCertSecretName: my-tls-secret
264+
```

0 commit comments

Comments
 (0)