A 24/7 city website needs always-on replicas behind a Service with rolling updates. Which workload should the team choose?
Select an answer to reveal the explanation.
Short Explanation
A city website is a shop that must stay open—Deployments keep the desired number of cashiers (replicas) running and let you remodel (roll out) without locking the doors. Jobs and CronJobs are for tasks that finish, not storefronts.
Full Explanation
Deployments are the standard Kubernetes workload for long-running, replicated applications: they maintain replica counts, support rolling updates, and integrate cleanly with Services. Jobs and CronJobs target finite or scheduled batch work. Bare Pods lack the controller features needed for production web apps.