diff --git a/docs/partials/replicated-sdk/_dependency-yaml.mdx b/docs/partials/replicated-sdk/_dependency-yaml.mdx index 73d8ca7865..ae96c36bf8 100644 --- a/docs/partials/replicated-sdk/_dependency-yaml.mdx +++ b/docs/partials/replicated-sdk/_dependency-yaml.mdx @@ -3,7 +3,7 @@ dependencies: - name: replicated repository: oci://registry.replicated.com/library - version: 1.9.0 + version: 1.10.0 ``` For the latest version information for the Replicated SDK, see the [replicated-sdk repository](https://github.com/replicatedhq/replicated-sdk/releases) in GitHub. diff --git a/docs/release-notes/rn-replicated-sdk.md b/docs/release-notes/rn-replicated-sdk.md index 5665f16617..87971debe7 100644 --- a/docs/release-notes/rn-replicated-sdk.md +++ b/docs/release-notes/rn-replicated-sdk.md @@ -8,6 +8,14 @@ pagination_prev: null 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. +## 1.10.0 + +Released on October 29, 2025 + +### Improvements {#improvements-1-10-0} +* 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 Configuration](/vendor/replicated-sdk-customizing#proxy). +* Enables the use of `kots.io/v1beta2` licenses. + ## 1.9.0 Released on October 16, 2025 diff --git a/docs/vendor/replicated-sdk-customizing.md b/docs/vendor/replicated-sdk-customizing.md index 1251d99819..27e3fd3df6 100644 --- a/docs/vendor/replicated-sdk-customizing.md +++ b/docs/vendor/replicated-sdk-customizing.md @@ -572,3 +572,29 @@ To enable reporting all images, set the `replicated.reportAllImages` value in yo replicated: reportAllImages: true ``` + +## Proxy Configuration {#proxy} + +With the Replicated SDK version 1.10.0 and later, you can configure the SDK to use an HTTPS proxy when fetching license information and reporting metrics. + +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. Setting an additional no_proxy is not required. + +To use a proxy, set the `replicated.proxy.httpsProxy` or `global.replicated.httpsProxy` value in your Helm chart `values.yaml` file: + +```yaml +# Helm chart values.yaml + +replicated: + proxy: + httpsProxy: http://proxy.example.com + noProxy: internal.domain.com +``` + +```yaml +# Helm chart values.yaml + +global: + replicated: + httpsProxy: http://proxy.example.com + noProxy: internal.domain.com +```