How can I delete the Kubernetes dashboard from kube-system? How can I delete the Kubernetes dashboard from kube-system? kubernetes kubernetes

How can I delete the Kubernetes dashboard from kube-system?


I had to disable the dashboard addon using minikube first. Then deleting the deployment did work for me.

minikube addons disable dashboard

And in case of ingress:

minikube addons disable ingress


Try the below command:

kubectl delete -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc5/aio/deploy/recommended.yaml

Enter image description here


Please do try the following:

kubectl get secret,sa,role,rolebinding,services,deployments --namespace=kube-system | grep dashboard