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

2 Answers

0 votes
by

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

0 votes
by
Answer: a)

Explanation: A way to ensure that a specific pod runs on every node in a Kubernetes cluster. Kubernetes DaemonSet is a way to ensure that a specific pod runs on every node in a Kubernetes cluster, enabling administrators to deploy background tasks or services that need to run on every node.
...