Skip to content

Commit 614007e

Browse files
authored
Merge pull request #3592 from replicatedhq/laverya/sdk-190
SDK 1.9.0 release notes
2 parents b5e5ecc + 014b01a commit 614007e

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

docs/partials/replicated-sdk/_dependency-yaml.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
dependencies:
44
- name: replicated
55
repository: oci://registry.replicated.com/library
6-
version: 1.8.1
6+
version: 1.9.0
77
```
88
99
For the latest version information for the Replicated SDK, see the [replicated-sdk repository](https://github.com/replicatedhq/replicated-sdk/releases) in GitHub.

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ 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.9.0
12+
13+
Released on October 16, 2025
14+
15+
### Improvements {#improvements-1-9-0}
16+
* 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).
17+
* Enables `reportAllImages` automatically for Embedded Cluster installations.
18+
* 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`.
19+
* Improves image name reporting by using the image name from the container spec when available.
20+
1121
## 1.8.1
1222

1323
Released on October 8, 2025
@@ -46,7 +56,7 @@ Released on Jun 20, 2025
4656
### Improvements {#improvements-1-7-0}
4757
* Updates the registry to point to a new proxy endpoint for improved performance and reliability.
4858
* 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.
49-
* 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_.
59+
* 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_.
5060

5161
## 1.6.0
5262

docs/vendor/replicated-sdk-customizing.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,4 +556,19 @@ To serve SDK API endpoints over HTTPS:
556556
replicated:
557557
tlsCertSecretName: YOUR_TLS_SECRET
558558
```
559-
Where `YOUR_TLS_SECRET` is the name of the Secret in the namespace containing the TLS certificate and key.
559+
Where `YOUR_TLS_SECRET` is the name of the Secret in the namespace containing the TLS certificate and key.
560+
561+
## Report All Images {#report-all-images}
562+
563+
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.
564+
565+
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.
566+
567+
To enable reporting all images, set the `replicated.reportAllImages` value in your Helm chart `values.yaml` file:
568+
569+
```yaml
570+
# Helm chart values.yaml
571+
572+
replicated:
573+
reportAllImages: true
574+
```

0 commit comments

Comments
 (0)