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/sample.on-prem.secret.yaml" "./sample.on-prem.secret-$VERSION.yaml"
cp "$TMP_DIR/unstract-platform/values-multi-az.yaml" "./values-multi-az-$VERSION.yaml"
This extracts three files:
| File | Description |
|---|---|
sample.on-prem.values-<VERSION>.yaml | Non-sensitive configuration — rename to on-prem.values.yaml and fill in # <REQUIRED> placeholders |
sample.on-prem.secret-<VERSION>.yaml | Sensitive credentials — rename to on-prem.secret.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 |