From c88fb456863c67b725e8e1b6306531f2f2ffe138 Mon Sep 17 00:00:00 2001 From: Gandalf Date: Sat, 16 May 2026 12:27:41 -0300 Subject: [PATCH] docs(matcher): add v2.3 upgrade guide Requested-by: @guimoreirar --- charts/matcher/docs/UPGRADE-2.3.md | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 charts/matcher/docs/UPGRADE-2.3.md diff --git a/charts/matcher/docs/UPGRADE-2.3.md b/charts/matcher/docs/UPGRADE-2.3.md new file mode 100644 index 00000000..84a6dfd5 --- /dev/null +++ b/charts/matcher/docs/UPGRADE-2.3.md @@ -0,0 +1,68 @@ +# Helm Upgrade from v2.2.x to v2.3.x +## Topics +- **[Overview](#overview)**- **[Version changes](#version-changes)**- **[Configuration changes](#configuration-changes)**- **[Template changes](#template-changes)**- **[Migration steps](#migration-steps)**- **[Preview changes before upgrading](#preview-changes-before-upgrading)**- **[Command to upgrade](#command-to-upgrade)** + +## Overview +This guide covers the `matcher` chart upgrade from `2.2.0` to `2.3.0-beta.2`. It was generated retroactively from the chart history and focuses on minor version changes; patch-only releases are intentionally ignored. + +Because this is a minor upgrade, the expected path is an in-place Helm upgrade after reviewing new values and changed defaults. + +## Version changes + +| Field | Previous | Current | +|-------|----------|---------| +| Chart version | `2.2.0` | `2.3.0-beta.2` | +| App version | `1.0.0` | `1.0.0` | + +## Configuration changes + +### Added values + +_No direct values.yaml key changes detected._ + +### Removed values + +_No direct values.yaml key changes detected._ + +### Changed operational values + +_No image, env, secret, probe, ingress, service, port, or enablement changes detected in values.yaml._ + +## Template changes + +### Added files + +- No chart files added. + +### Removed files + +- No chart files removed. + +### Modified files + +- `charts/matcher/Chart.yaml` +- `charts/matcher/templates/deployment.yaml` +- `charts/matcher/values.yaml` + +## Migration steps + +1. Read this guide and compare your custom values against `charts/matcher/values.yaml`. +2. Add any required new values for your environment, especially secrets, configmaps, probes, ingress, and service settings. +3. Render the chart locally with your production values and review the manifest diff. +4. Apply the upgrade in a controlled environment before production. + +## Preview changes before upgrading + +```bash +helm diff upgrade matcher ./charts/matcher \ + --namespace \ + --values +``` + +## Command to upgrade + +```bash +helm upgrade matcher ./charts/matcher \ + --namespace \ + --values +```