how to permanently delete kubernetes pod without restart code example
Example 1: restart a pod kubernetes
kubectl rollout restart deployment [deployment_name]
Example 2: force delete pod kubernetes
kubectl delete pods <pod> --grace-period=0 --force