xxxxxxxxxx
# I deleted the resources in the below order and it worked for me.
# To get all the resources.
kubectl get pods,services,deployments,jobs,daemonset
# Delete the resources like below:
kubectl delete deployments <deployment>
kubectl delete services <services>
kubectl delete pods <pods> --namespace=<namespace>
kubectl delete daemonset <daemonset>
xxxxxxxxxx
kubectl delete pods <pod>
To force delete
kubectl delete pods <pod> --grace-period=0 --force
xxxxxxxxxx
kubectl delete daemonsets,replicasets,services,deployments,pods,rc,ingress --all --all-namespaces
kubectl get pods -n
xxxxxxxxxx
$ kubectl get pods -n default --no-headers=true | awk '/web-app/{print $1}'| xargs kubectl delete -n default podpod "web-app-7fb4f5bff9-8crgx" deletedpod "web-app-7fb4f5bff9-ftzfd" deletedpod "web-app-7fb4f5bff9-rrkt2" deleted