从这个问题如何手动从 Kubernetes 卸载/删除分蘖?我知道我可以使用
helm reset --force
引用https://helm.sh/docs/helm/#helm-reset ...
从 Kubernetes 集群中卸载 Tiller(Helm 服务器端组件),并可选择删除 $HELM-HOME 中的本地配置(默认为 ~/.helm/)
我的问题是:
在多节点集群中,应该每个主节点运行一次还是每个集群运行一次?
从这个问题如何手动从 Kubernetes 卸载/删除分蘖?我知道我可以使用
helm reset --force
引用https://helm.sh/docs/helm/#helm-reset ...
从 Kubernetes 集群中卸载 Tiller(Helm 服务器端组件),并可选择删除 $HELM-HOME 中的本地配置(默认为 ~/.helm/)
我的问题是:
在多节点集群中,应该每个主节点运行一次还是每个集群运行一次?
Once per cluster should be enough, because tiller is a single cluster-wide component that is running completely on kubernetes, not tied to a specific node.
Additionally, you do not need to run this command on the nodes themselves - you can run it locally as well, as long as you can talk to the kube-apiserver. This is what is meant by the "local configuration files (~/.helm.
)".