On-Prem Release Notes
This page lists all stable Unstract on-prem releases. Release notes are organized by year — select a year below to view the full changelog.
Download Configuration Files
Use the command below to extract the configuration files for a specific release directly from the Helm chart registry. Replace <VERSION> with the target release version (e.g., 0.158.0).
note
You must be authenticated to the Helm registry before running this command. See Step 2 of the Deployment Guide for authentication instructions.
VERSION=<VERSION>
TMP_DIR="/tmp/unstract-extract-$(date +%s)"
trap 'rm -rf "$TMP_DIR"' EXIT
mkdir -p "$TMP_DIR"
helm pull oci://us-central1-docker.pkg.dev/pandoras-tamer/charts/unstract-platform \
--version "$VERSION" --untar --untardir "$TMP_DIR"
cp "$TMP_DIR/unstract-platform/sample.on-prem.values.yaml" "./sample.on-prem.values-$VERSION.yaml"
cp "$TMP_DIR/unstract-platform/values-multi-az.yaml" "./values-multi-az-$VERSION.yaml"
This extracts two files:
| File | Description |
|---|---|
sample.on-prem.values-<VERSION>.yaml | All configuration, including sensitive credentials — rename to on-prem.values.yaml and fill in # <REQUIRED> placeholders |
values-multi-az-<VERSION>.yaml | HA/Multi-AZ override — apply this in addition to the above for HA deployments |
note
Releases before v0.170.0 also ship a separate sample.on-prem.secret.yaml; from v0.170.0 onward it is consolidated into sample.on-prem.values.yaml.