How to Restart All Pods in a Kubernetes Namespace | Boot.dev ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ !https://blog.boot.dev/open-source/how-to-restart-all-pods-in-a-kubernetes-namespace/ Date: April 26, 2024 Image: How to Restart All Pods in a Kubernetes Namespace | Boot.dev — Where I work, we use a repo-per-namespace setup and so it often happens that I want to restart all pods and deployments in a single Kubernetes namespace. Maybe I want to see the startup logs, or maybe I want to shut down production for a few seconds. Don How to Restart All Pods in a Kubernetes Namespace | Boot.dev Where I work, we use a repo-per-namespace setup and so it often happens that I want to restart all pods and deployments in a single Kubernetes namespace. Maybe I want to see the startup logs, or ma... Boot.dev · blog.boot.dev As of kubernetes 1.15 there is an easy way to restart all pods in a deployment. ``` kubectl -n {NAMESPACE} rollout restart deploy ``` Thanks Lane give him a follow @wagslane