Command to pause or stop POD , I have to replicate scenario in production POD contains containers running there is a way to pause docker containers is there any way for POD in Kubernetes
if I understand your request correctly you should just scale up/down your deployment:
kubectl scale deployment <deployment_name> --replicas=<number_of_needed_pods>