From 3bbbb693f07354b3bbd9a1ac1d420f4c4f0759f2 Mon Sep 17 00:00:00 2001 From: Diamon Wiggins Date: Fri, 4 Apr 2025 13:19:53 -0400 Subject: [PATCH 1/4] update rn-replicated-sdk.md --- docs/release-notes/rn-replicated-sdk.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/release-notes/rn-replicated-sdk.md b/docs/release-notes/rn-replicated-sdk.md index ba291aa375..5c65a77cba 100644 --- a/docs/release-notes/rn-replicated-sdk.md +++ b/docs/release-notes/rn-replicated-sdk.md @@ -8,6 +8,26 @@ 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.5.0 + +Released on April 4, 2025 + +### New Features {#new-features-1-5-0} +* Adds support for setting custom annotations across all resources via the `commonAnnotations` Helm value. +* Adds support for configuring container resource requirements via the `resources` Helm value. +* Adds support for customizing the readiness probe configuration. +* Adds support for mounting custom volumes with `extraVolumes` and `extraVolumeMounts` Helm values. +* Adds support for init containers with the `initContainers` Helm value. +* Adds support for host settings including `hostNetwork`, `hostIPC`, and `hostAliases`. +* Adds support for advanced scheduling with `topologySpreadConstraints`. +* Adds support for priority configuration with `priorityClassName` and `schedulerName`. +* Adds support for using existing secrets with new `existingSecret` Helm value. + +### Improvements {#improvements-1-5-0} +* Improved template organization with reusable helper functions. +* Consolidated related configuration sections in templates. +* Added comprehensive documentation for all configuration options. + ## 1.4.0 Released on April 1, 2025 From 97430fa787ad915fcffe71912789cbb47db20ac3 Mon Sep 17 00:00:00 2001 From: Diamon Wiggins Date: Fri, 4 Apr 2025 13:21:55 -0400 Subject: [PATCH 2/4] bump SDK version --- docs/vendor/replicated-sdk-installing.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/vendor/replicated-sdk-installing.mdx b/docs/vendor/replicated-sdk-installing.mdx index 71d11b897f..fb034a4505 100644 --- a/docs/vendor/replicated-sdk-installing.mdx +++ b/docs/vendor/replicated-sdk-installing.mdx @@ -89,7 +89,7 @@ To add the SDK Helm chart to a release for a Kubernetes manifest-based applicati ``` Where `SDK_VERSION` is the version of the SDK to install. For a list of available SDK versions, see the [replicated-sdk repository](https://github.com/replicatedhq/replicated-sdk/tags) in GitHub. - The output of this command is a `.tgz` file with the naming convention `CHART_NAME-CHART_VERSION.tgz`. For example, `replicated-1.4.0.tgz`. + The output of this command is a `.tgz` file with the naming convention `CHART_NAME-CHART_VERSION.tgz`. For example, `replicated-1.5.0.tgz`. For more information and additional options, see [Helm Pull](https://helm.sh/docs/helm/helm_pull/) in the Helm documentation. @@ -117,7 +117,7 @@ To add the SDK Helm chart to a release for a Kubernetes manifest-based applicati name: replicated # for chartversion, enter the version of the # SDK Helm chart in the release - chartVersion: 1.4.0 + chartVersion: 1.5.0 ``` As shown in the example above, the HelmChart custom resource requires the name and version of the SDK Helm chart that you added to the release: From 67ce21a7fd0cc22fd1ac3489c41f7bc88d26873a Mon Sep 17 00:00:00 2001 From: Paige Calvert Date: Fri, 4 Apr 2025 11:52:37 -0600 Subject: [PATCH 3/4] adds xrefs to relevant helm values --- .../replicated-sdk/_dependency-yaml.mdx | 2 +- docs/release-notes/rn-replicated-sdk.md | 24 +++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/partials/replicated-sdk/_dependency-yaml.mdx b/docs/partials/replicated-sdk/_dependency-yaml.mdx index 51e39f4244..291b5288b4 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.4.0 + version: 1.5.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 5c65a77cba..b76fb14e29 100644 --- a/docs/release-notes/rn-replicated-sdk.md +++ b/docs/release-notes/rn-replicated-sdk.md @@ -13,20 +13,20 @@ This topic contains release notes for the [Replicated SDK](/vendor/replicated-sd Released on April 4, 2025 ### New Features {#new-features-1-5-0} -* Adds support for setting custom annotations across all resources via the `commonAnnotations` Helm value. -* Adds support for configuring container resource requirements via the `resources` Helm value. -* Adds support for customizing the readiness probe configuration. -* Adds support for mounting custom volumes with `extraVolumes` and `extraVolumeMounts` Helm values. -* Adds support for init containers with the `initContainers` Helm value. -* Adds support for host settings including `hostNetwork`, `hostIPC`, and `hostAliases`. -* Adds support for advanced scheduling with `topologySpreadConstraints`. -* Adds support for priority configuration with `priorityClassName` and `schedulerName`. -* Adds support for using existing secrets with new `existingSecret` Helm value. +* Adds support for setting custom annotations across all resources with the [`commonAnnotations`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L16) Helm value. +* Adds support for configuring container resource requirements with the [`resources`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L93) Helm value. +* Adds support for customizing the readiness probe configuration with the [`readinessProbe`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L79) Helm value. +* Adds support for mounting custom volumes with the [`extraVolumes`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L115) and [`extraVolumeMounts`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L125) Helm values. +* Adds support for init containers with the [`initContainers`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L104) Helm value. +* Adds support for host settings including [`hostNetwork`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L171C1-L171C8), [`hostIPC`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L175), and [`hostAliases`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L179). +* Adds support for advanced scheduling with the [`topologySpreadConstraints`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L188) Helm value. +* Adds support for priority configuration with the [`priorityClassName`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L199) and [`schedulerName`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L203) Helm values. +* Adds support for using existing secrets with the [`existingSecret`](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl#L134) Helm value. ### Improvements {#improvements-1-5-0} -* Improved template organization with reusable helper functions. -* Consolidated related configuration sections in templates. -* Added comprehensive documentation for all configuration options. +* Improves template organization with reusable helper functions. +* Consolidates related configuration sections in templates. +* Adds comprehensive documentation for all configuration options. See [values.yaml.tmpl](https://github.com/replicatedhq/replicated-sdk/blob/main/chart/values.yaml.tmpl) in the replicated-sdk repository in GitHub. ## 1.4.0 From 158a26b16fbe987187829f020b433b46238609bf Mon Sep 17 00:00:00 2001 From: Diamon Wiggins Date: Mon, 7 Apr 2025 09:37:50 -0400 Subject: [PATCH 4/4] bump date --- docs/release-notes/rn-replicated-sdk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/rn-replicated-sdk.md b/docs/release-notes/rn-replicated-sdk.md index 5c65a77cba..9eede4e63a 100644 --- a/docs/release-notes/rn-replicated-sdk.md +++ b/docs/release-notes/rn-replicated-sdk.md @@ -10,7 +10,7 @@ This topic contains release notes for the [Replicated SDK](/vendor/replicated-sd ## 1.5.0 -Released on April 4, 2025 +Released on April 7, 2025 ### New Features {#new-features-1-5-0} * Adds support for setting custom annotations across all resources via the `commonAnnotations` Helm value.