How to forcefully delete a daemonset or a pod in kubernetes cluster
You can delete a daemonset.apps using this command:
kubectl delete --all daemonset.apps -n <namespace>
Re-run the second command with namespace
parameter will do your job.
--grace-period=0 --force
is the right command to delete such pods.