Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions charts/harvester-upgrade-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: harvester-upgrade-manager
description: A Helm chart to distribute harvester-upgrade-manager
type: application

version: 1.8.0-rc2
appVersion: "v1.8.0-rc2"
version: 1.8.0-rc5
appVersion: "v1.8.0-rc5"

keywords:
- kubernetes
Expand Down
2 changes: 1 addition & 1 deletion charts/harvester-upgrade-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ manager:

image:
repository: rancher/harvester-upgrade-toolkit
tag: "v1.8.0-rc3"
tag: "v1.8.0-rc5"
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This chart hard-codes the image tag in values.yaml, and the template renders it directly (templates/manager/manager.yaml:70). Most other charts in this repo default the image tag to .Chart.AppVersion (e.g., charts/harvester-load-balancer/templates/deployment.yaml:22), which avoids having to bump both Chart.yaml appVersion and values.yaml tag and prevents accidental mismatches. Consider updating the manager deployment template to default to .Chart.AppVersion when manager.image.tag is unset, and then either remove the explicit tag here or keep it only as an override.

Suggested change
tag: "v1.8.0-rc5"

Copilot uses AI. Check for mistakes.
pullPolicy: IfNotPresent

## Arguments
Expand Down
Loading