7 items with this tag.
The objects that describe running applications: Pods, controllers, rollout strategy, stateful workloads, and batch jobs.
A Pod is the smallest deployable unit: one network identity, one scheduling decision, and one shared local context for containers.
A Deployment is a rollout controller. ReplicaSets are the machinery it uses to keep the right number of Pods alive.
StatefulSet gives Pods stable identity and ordered behavior. It is for software that notices who it is.
A DaemonSet runs one copy of a Pod across selected nodes. It is how node-level services become cluster-wide.
Jobs are for completion, not serving. CronJobs add a clock to that contract.
Autoscaling is a feedback loop. It needs metrics, resource requests, and a workload that can survive replica changes.