-
-
Notifications
You must be signed in to change notification settings - Fork 2
[hotfix] docs(fetcher): add v2.2 upgrade guide #1380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,68 @@ | ||||||||||
| # Helm Upgrade from v2.1.x to v2.2.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 `fetcher` chart upgrade from `2.1.1` to `2.2.0-beta.4`. 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.1.1` | `2.2.0-beta.4` | | ||||||||||
| | App version | `1.3.0` | `1.3.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._ | ||||||||||
|
Comment on lines
+21
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Address inconsistency between "no changes detected" and modified template files. The document states multiple times that no configuration changes were detected (lines 21, 25, 29), yet lists Additionally, the document doesn't explain what actually changed in the deployment.yaml file, which is critical information for users assessing the upgrade impact. Consider either:
Also applies to: 43-45 🤖 Prompt for AI Agents |
||||||||||
|
|
||||||||||
| ## Template changes | ||||||||||
|
|
||||||||||
| ### Added files | ||||||||||
|
|
||||||||||
| - No chart files added. | ||||||||||
|
|
||||||||||
| ### Removed files | ||||||||||
|
|
||||||||||
| - No chart files removed. | ||||||||||
|
|
||||||||||
| ### Modified files | ||||||||||
|
|
||||||||||
| - `charts/fetcher/CHANGELOG.md` | ||||||||||
| - `charts/fetcher/Chart.yaml` | ||||||||||
| - `charts/fetcher/templates/manager/deployment.yaml` | ||||||||||
|
|
||||||||||
| ## Migration steps | ||||||||||
|
|
||||||||||
| 1. Read this guide and compare your custom values against `charts/fetcher/values.yaml`. | ||||||||||
| 2. Add any required new values for your environment, especially secrets, configmaps, probes, ingress, and service settings. | ||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove contradictory migration step. Step 2 advises users to "Add any required new values for your environment, especially secrets, configmaps, probes, ingress, and service settings," but the Configuration changes section explicitly states "No image, env, secret, probe, ingress, service, port, or enablement changes detected in values.yaml" (line 29). This contradiction creates confusion about whether users need to take action. 📝 Proposed fix to align migration steps with documented changes 1. Read this guide and compare your custom values against `charts/fetcher/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.
+2. Render the chart locally with your production values and review the manifest diff.
+3. Apply the upgrade in a controlled environment before production.📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||
| 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 fetcher ./charts/fetcher \ | ||||||||||
| --namespace <namespace> \ | ||||||||||
| --values <your-values.yaml> | ||||||||||
| ``` | ||||||||||
|
|
||||||||||
| ## Command to upgrade | ||||||||||
|
|
||||||||||
| ```bash | ||||||||||
| helm upgrade fetcher ./charts/fetcher \ | ||||||||||
| --namespace <namespace> \ | ||||||||||
| --values <your-values.yaml> | ||||||||||
| ``` | ||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix TOC formatting for readability.
The table of contents items are concatenated on a single line without proper spacing or newlines. This makes the TOC difficult to read and doesn't render as a proper markdown list.
📝 Proposed fix for TOC formatting
📝 Committable suggestion
🤖 Prompt for AI Agents