0 votes
in Kubernetes K8s by

What is a Kubernetes DaemonSet?

a) A controller that ensures a specific number of replicas are running

b) A tool for managing Kubernetes resources

c) A networking abstraction to access a set of Pods

d) A controller that ensures a pod runs on every node in a cluster

1 Answer

0 votes
by
Answer: d)

Explanation: A controller that ensures a pod runs on every node in a cluster. A Kubernetes DaemonSet is a controller that ensures a pod runs on every node in a Kubernetes cluster, providing a way to run a specific set of tasks on every node in the cluster.
...