1

I have recently updated my helm version to v3.0.0-beta. I need to revert back to the helm version to 2. When i tried to switch to the helm version 2, it s spitting an error like "Error: uninstall: Release not loaded: v3.0.0-beta.3: release: not found".

Helm version:

version.BuildInfo{Version:"v3.0.0-beta.3", GitCommit:"5cb923eecbe80d1ad76399aee234717c11931d9a", GitTreeState:"clean", GoVersion:"go1.12.9"}

Command tried to uninstall : helm reset

Also tried brew uninstall helm and helm reset --force

Error:

"Error: uninstall: Release not loaded: v3.0.0-beta.3: release: not found"

Is there anyway to downgrade Helm version from 3 to 2...?

4

2 回答 2

1

It has been resolved.. Download the stable version from helm v2.15.2

and then find the helm binary in the unpacked directory, and move it to its desired destination (mv linux-amd64/helm /usr/local/bin/helm.

Client: &version.Version{SemVer:"v2.15.2", GitCommit:"8dce272473e5f2a7bf58ce79bb5c3691db54c96b", GitTreeState:"clean"}
于 2019-12-06T14:14:10.743 回答
0

有一个命令可以回滚到最后一个成功的版本。您需要将目标发布版本定义为 0: helm rollback <RELEASE> 0

更多细节可以在这个 github 线程下找到。

请让我知道这是否有帮助。

于 2019-12-06T13:39:35.777 回答