Kubernetes Question of the Day June 29 2022


Userlevel 7
Badge +22

June 29th

Daemonsets do not place pods on all nodes


1 comment

Userlevel 1

It is rigth, a daemonset ensure a pod is scheduled on every node, you can view it on your cluster using kubectl get daeamonset --all-namespaces, some use cases are fluentd (for logs collection), some CNI implementations as weave, flannel or calico, also you can view its details using kubectl describe daemonset namedaemonset -n namespace.

 

Best regards!

Comment