how to delete tiller from kubernetes cluster

前端 未结 6 2084

Tiller is not working properly in my kubernetes cluster. I want to delete everything Tiller. Tiller (2.5.1) has 1 Deployment, 1 ReplicaSet and 1 Pod.

I tried:

6条回答
  •  庸人自扰
    2021-02-03 17:45

    Kubectl get hpa --all-namespaces( OR -n kube-system)

    In normal tiller deployment, they use replica set. For your set up there might be a HorizontalPodAutoscaler object which is targeting the replica sets for tiller.

    You can delete the HPA first and then delete the associated replicasets, pods, configmaps OR you can reset helm using "helm reset" command.

提交回复
热议问题