From 014b01adc210c0d00f8cfceb6a2857920c94b869 Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Thu, 16 Oct 2025 12:17:26 -0300 Subject: [PATCH] SDK 1.9.0 release notes --- .../replicated-sdk/_dependency-yaml.mdx | 2 +- docs/release-notes/rn-replicated-sdk.md | 12 +++++++++++- docs/vendor/replicated-sdk-customizing.md | 17 ++++++++++++++++- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/docs/partials/replicated-sdk/_dependency-yaml.mdx b/docs/partials/replicated-sdk/_dependency-yaml.mdx index 478303ce99..73d8ca7865 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.8.1 + version: 1.9.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 2a6231d5e1..5665f16617 100644 --- a/docs/release-notes/rn-replicated-sdk.md +++ b/docs/release-notes/rn-replicated-sdk.md @@ -8,6 +8,16 @@ 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.9.0 + +Released on October 16, 2025 + +### Improvements {#improvements-1-9-0} +* Adds support for reporting all running images in a cluster with [`reportAllImages`](https://github.com/replicatedhq/replicated-sdk/blob/1.9.0/chart/values.yaml#L307). For more information, see [Report All Images](/vendor/replicated-sdk-customizing#report-all-images). +* Enables `reportAllImages` automatically for Embedded Cluster installations. +* Compares images using only the trailing name segments, so `alpine/curl:latest` matches `proxy.replicated.com/myapp/docker/alpine/curl:latest` and `private-registry.app.com/alpine/curl:latest`. +* Improves image name reporting by using the image name from the container spec when available. + ## 1.8.1 Released on October 8, 2025 @@ -46,7 +56,7 @@ Released on Jun 20, 2025 ### Improvements {#improvements-1-7-0} * Updates the registry to point to a new proxy endpoint for improved performance and reliability. * Adds support adding a liveness probe to the SDK deployment with the [`livenessProbe`](https://github.com/replicatedhq/replicated-sdk/blob/1.7.0/chart/values.yaml#L106) Helm value. -* Adds support for a RBAC role with reduced scope with the [`minimalRBAC`](https://github.com/replicatedhq/replicated-sdk/blob/1.7.0/chart/values.yaml#L301) Helm value.For more information, see [Minimal RBAC](/vendor/replicated-sdk-customizing#minimal-rbac) in _Customizing the Replicated SDK_. +* Adds support for a RBAC role with reduced scope with the [`minimalRBAC`](https://github.com/replicatedhq/replicated-sdk/blob/1.7.0/chart/values.yaml#L301) Helm value. For more information, see [Minimal RBAC](/vendor/replicated-sdk-customizing#minimal-rbac) in _Customizing the Replicated SDK_. ## 1.6.0 diff --git a/docs/vendor/replicated-sdk-customizing.md b/docs/vendor/replicated-sdk-customizing.md index 739b56a7f9..1251d99819 100644 --- a/docs/vendor/replicated-sdk-customizing.md +++ b/docs/vendor/replicated-sdk-customizing.md @@ -556,4 +556,19 @@ To serve SDK API endpoints over HTTPS: replicated: tlsCertSecretName: YOUR_TLS_SECRET ``` - Where `YOUR_TLS_SECRET` is the name of the Secret in the namespace containing the TLS certificate and key. \ No newline at end of file + Where `YOUR_TLS_SECRET` is the name of the Secret in the namespace containing the TLS certificate and key. + +## Report All Images {#report-all-images} + +With the Replicated SDK version 1.9.0 and later, you can configure the SDK to report all container images observed in the cluster rather than only images from your application. + +When enabled, the SDK watches pod images across all accessible namespaces and reports any images that it discovers. In Embedded Cluster installations, this option is enabled automatically. + +To enable reporting all images, set the `replicated.reportAllImages` value in your Helm chart `values.yaml` file: + +```yaml +# Helm chart values.yaml + +replicated: + reportAllImages: true +```