gpt4 book ai didi

kubernetes-helm - Helm 未显示版本/无法删除旧版本

转载 作者:行者123 更新时间:2023-12-02 02:43:22 25 4
gpt4 key购买 nike

我在 Kubernetes v1.15.3 上使用 helm v3.0.0-alpha.2。

[root@somebox log]# helm version
version.BuildInfo{Version:"v3.0.0-alpha.2", GitCommit:"97e7461e41455e58d89b4d7d192fed5352001d44", GitTreeState:"clean", GoVersion:"go1.12.7"}
helm list 未显示任何版本。
[root@somebox log]# helm list
NAME NAMESPACE REVISION UPDATED STATUS CHART

但是我无法安装新版本并为其命名,因为它“仍在使用中”。它在某个时候是一个版本,但应该不再存在。
[root@somebox log]# helm install --namespace rook-ceph rook-ceph-acme rook-release/rook-ceph
Error: cannot re-use a name that is still in use

如何清除未显示 helm list 的旧版本?

谢谢。

最佳答案

首先,您必须列出分配给它的命名空间的版本。其次,您必须清除 helm2 中的所有版本;它会自动清除 helm3掌 Helm 2

helm del <release-name> --namespace <namespace>
helm del $(helm ls --all | grep 'DELETED' | awk '{print $1}') --purge
掌 Helm 3
helm3 del <release-name> --namespace <namespace>

# list and delete the release
helm3 del -n rook-ceph $(helm3 ls -n rook-ceph | grep 'rook-ceph' | awk '{print $1}')
更多详细信息: https://devopsqa.wordpress.com/2020/01/29/helm-cli-cheatsheet/

关于kubernetes-helm - Helm 未显示版本/无法删除旧版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57681556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com