美文网首页
helm2卸载

helm2卸载

作者: 小黑佬 | 来源:发表于2021-03-26 23:10 被阅读0次

    helm2 至今已经停产了。
    架构 server端 tiller
    客户端 helm2

    chunk@chunk-thinkpad-x240:~$ kubectl get all -n kube-system -l app=helm -o name
    pod/tiller-deploy-b9c654d68-fp5ht
    service/tiller-deploy
    deployment.apps/tiller-deploy
    replicaset.apps/tiller-deploy-b9c654d68
    chunk@chunk-thinkpad-x240:~$ 
    chunk@chunk-thinkpad-x240:~$ kubectl get all -n kube-system -l app=helm -o name| xargs kubectl delete -n kube-system
    pod "tiller-deploy-b9c654d68-fp5ht" deleted
    service "tiller-deploy" deleted
    deployment.apps "tiller-deploy" deleted
    replicaset.apps "tiller-deploy-b9c654d68" deleted
    
    

    由于当时我的helm是apt安装的

    apt-get install helm2 
    

    直接卸载就好了

    sudo apt remove helm2
    

    相关文章

      网友评论

          本文标题:helm2卸载

          本文链接:https://www.haomeiwen.com/subject/fptehltx.html