A school district public portal briefly went dark during an image change because every Pod was terminated before new ones started. Which Deployment strategy causes that downtime pattern?
Select an answer to reveal the explanation.
Short Explanation
Recreate is the all-stop-then-restart remodel: tear down every Pod first, then bring new ones up—so the portal can go dark in between. RollingUpdate is the usual HA choice when citizens need the site up during upgrades.
Full Explanation
The Recreate Deployment strategy kills all Pods matching the old template before creating replacements, causing downtime. RollingUpdate is the default high-availability approach that replaces Pods gradually. Services and HPA do not define that kill-all-first Deployment update behavior.