Skip to content
Open
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
6 changes: 3 additions & 3 deletions versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ K0S_VERSION = $(K0S_VERSION_1_$(K0S_MINOR_VERSION))
K0S_GO_VERSION = $(K0S_VERSION_1_$(K0S_MINOR_VERSION))

# Troubleshoot Version
TROUBLESHOOT_VERSION = v0.122.0
TROUBLESHOOT_VERSION = v0.123.12

# Helm Version
HELM_VERSION = v3.19.0
HELM_VERSION = v4.0.0
Copy link

Choose a reason for hiding this comment

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

Bug: Helm Upgrade: Dependency Mismatch Risk

The HELM_VERSION upgrade from v3.19.0 to v4.0.0 creates a version mismatch with the Go dependencies. The codebase imports helm.sh/helm/v3 packages throughout (see go.mod and multiple controller files), but the Makefile now downloads the Helm v4.0.0 binary. This major version jump between the Go libraries and the binary could cause compatibility issues since the code uses both the Helm Go SDK and executes the Helm binary directly. A major version upgrade requires updating the Go dependencies and testing for breaking changes.

Fix in Cursor Fix in Web


# FIO Version (for performance testing)
FIO_VERSION = 3.41

# Kubernetes Development Tool Versions
CONTROLLER_TOOLS_VERSION = v0.19.0
KUSTOMIZE_VERSION = v5.7.1
KUSTOMIZE_VERSION = v5.8.0

### Overrides ###

Expand Down
Loading