Restart pods without downtime.
`kubectl rollout restart` recreates pods one at a time,
respecting the deployment's update strategy. Useful after a config change.
TASK
----
Run:
kubectl create deployment web --image=nginx --replicas=3
kubectl rollout restart deployment/web
Pass when the output contains "restarted".
Sign in to save your code and track progress across devices.