Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/partials/replicated-sdk/_dependency-yaml.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
20 changes: 20 additions & 0 deletions docs/release-notes/rn-replicated-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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}
* 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

Released on April 1, 2025
Expand Down
4 changes: 2 additions & 2 deletions docs/vendor/replicated-sdk-installing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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:
Expand Down