From cb05d75f5ddc6813f950f239fae8addb49a2b7c6 Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Wed, 29 Oct 2025 15:36:47 -0300 Subject: [PATCH 1/2] SDK 1.10.0 release notes and docs --- docs/release-notes/rn-replicated-sdk.md | 8 +++++++ docs/vendor/replicated-sdk-customizing.md | 26 +++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/docs/release-notes/rn-replicated-sdk.md b/docs/release-notes/rn-replicated-sdk.md index 5665f16617..7fea927746 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](/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..bfe1733c27 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 a 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. You can set an additional no_proxy if desired but this should not be 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 +``` From 4e27255d06f5ed864b2cd34538f892fdf54d41a8 Mon Sep 17 00:00:00 2001 From: Paige Calvert Date: Wed, 29 Oct 2025 14:00:13 -0600 Subject: [PATCH 2/2] docs edits --- docs/partials/replicated-sdk/_dependency-yaml.mdx | 2 +- docs/release-notes/rn-replicated-sdk.md | 2 +- docs/vendor/replicated-sdk-customizing.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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 7fea927746..87971debe7 100644 --- a/docs/release-notes/rn-replicated-sdk.md +++ b/docs/release-notes/rn-replicated-sdk.md @@ -13,7 +13,7 @@ This topic contains release notes for the [Replicated SDK](/vendor/replicated-sd 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](/vendor/replicated-sdk-customizing#proxy). +* 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 diff --git a/docs/vendor/replicated-sdk-customizing.md b/docs/vendor/replicated-sdk-customizing.md index bfe1733c27..27e3fd3df6 100644 --- a/docs/vendor/replicated-sdk-customizing.md +++ b/docs/vendor/replicated-sdk-customizing.md @@ -575,9 +575,9 @@ replicated: ## Proxy Configuration {#proxy} -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. +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. You can set an additional no_proxy if desired but this should not be required. +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: