How do I stop a pod from running?

I see that there is an option to restart. What if I want to stop it from running momentarily?
Thanks…

You can restart deployments, daemon sets, etc. Is this what you are referring to? Kubernetes doesn’t support pausing pods, but you can “pause” a deployment by scaling it to 0. See docker - how to stop/pause a pod in kubernetes - Stack Overflow for more