Daemonset not deploying pod to each node #15
Replies: 1 comment
-
Without seeing anything on the cluster, my guess is that the A If you bring up new Nodes, Karpenter should allocate a new Node that is big enough for all the DaemonSet Pods plus whatever new Pods triggered the scale up, so this is a sort of cold-start issue. Kubernetes does provide an official mechanism for managing this sort of thing, called
This tells the Kubernetes scheduler to evict lower priority Pods to make room for these pods, if needed. DaemonSets are the main use case for this, because any other kind of Pod would just trigger the creation of a new Node to handle it. cc @Nuru |
Beta Was this translation helpful? Give feedback.
-
I have deployed a AWS x-ray daemonset on our cluster without any node selector or tolerations , but its deployed only on few nodes, not every node in the cluster , I also don't see any pods in pending state if the resources are insufficient, Wanted to know thoughts regarding what can be the issue. screenshot
Beta Was this translation helpful? Give feedback.
All reactions