Which of the following is NOT a Kubernetes workload type?
- StatefulSet
- Deployment
- DaemonSet
- LoadBalancer ✓
Correct answer: LoadBalancer
Option D is correct because LoadBalancer is a Kubernetes Service type, not a workload type. Kubernetes workloads are objects that manage pods and their lifecycle, such as Deployments, StatefulSets, and DaemonSets. Option A is wrong because StatefulSet is indeed a workload type used for stateful applications requiring stable network identities and persistent storage. Option B is wrong because Deployment is the most common workload type, managing stateless pod replicas with rolling update support. Option C is wrong because DaemonSet is a workload type that ensures a copy of a pod runs on each (or selected) nodes in the cluster.
Topic: · kubernetes, workload types, services, daemonset