Skip to content

Commit cb05d75

Browse files
committed
SDK 1.10.0 release notes and docs
1 parent 9ac171c commit cb05d75

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

docs/release-notes/rn-replicated-sdk.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ pagination_prev: null
88

99
This topic contains release notes for the [Replicated SDK](/vendor/replicated-sdk-overview). The release notes list new features, improvements, bug fixes, known issues, and breaking changes.
1010

11+
## 1.10.0
12+
13+
Released on October 29, 2025
14+
15+
### Improvements {#improvements-1-10-0}
16+
* Adds support for configuring a proxy for the SDK with [`proxy`](https://github.com/replicatedhq/replicated-sdk/blob/1.10.0/chart/values.yaml#L315). For more information, see [Proxy](/vendor/replicated-sdk-customizing#proxy).
17+
* Enables the use of `kots.io/v1beta2` licenses.
18+
1119
## 1.9.0
1220

1321
Released on October 16, 2025

docs/vendor/replicated-sdk-customizing.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,3 +572,29 @@ To enable reporting all images, set the `replicated.reportAllImages` value in yo
572572
replicated:
573573
reportAllImages: true
574574
```
575+
576+
## Proxy Configuration {#proxy}
577+
578+
With the Replicated SDK version 1.10.0 and later, you can configure the SDK to use a https proxy when fetching license information and reporting metrics.
579+
580+
When enabled, the SDK will use the configured proxy for requests to Replicated APIs, but will not use a proxy for requests to the Kubernetes API. You can set an additional no_proxy if desired but this should not be required.
581+
582+
To use a proxy, set the `replicated.proxy.httpsProxy` or `global.replicated.httpsProxy` value in your Helm chart `values.yaml` file:
583+
584+
```yaml
585+
# Helm chart values.yaml
586+
587+
replicated:
588+
proxy:
589+
httpsProxy: http://proxy.example.com
590+
noProxy: internal.domain.com
591+
```
592+
593+
```yaml
594+
# Helm chart values.yaml
595+
596+
global:
597+
replicated:
598+
httpsProxy: http://proxy.example.com
599+
noProxy: internal.domain.com
600+
```

0 commit comments

Comments
 (0)