25/08/2026
Amazon Web Services (AWS) EKS has always run the control plane as a black box. On 12 August it opened four parameters on it, and the first one has a bill attached.
Every cluster ever created schedules pods with LeastAllocated. When the scheduler ranks the nodes a pod could run on, it prefers the emptiest one. Pods spread out, every node keeps headroom, and you pay for that headroom on every node in the fleet.
Nobody chose this. It is the upstream default, and until last week a managed control plane gave you no way to change it short of running a second scheduler next to the one AWS runs for you.
MostAllocated inverts the ranking. The fullest node that still fits wins, so the same workloads occupy fewer nodes and the lightly used ones stop attracting new pods, which is what lets Karpenter or Auto Mode consolidate them away.
One API call:
`aws eks update-cluster-config --name "$CLUSTER" --kube-scheduler-config '{"nodeResourcesFit":{"scoringStrategy":{"type":"MostAllocated"}}}'`
Whether it belongs on your cluster comes down to four things:
β Packing concentrates blast radius. More pods go down with one node, one AZ, one spot reclaim.
β Running pods are never moved. Nothing changes until pods reschedule on their own.
β Under heavy churn, dense nodes fill faster and pods sit Pending while new capacity comes up.
β Scoring provisions nothing. The saving only lands if your node layer consolidates.
Worth knowing before you type it: AWS ships no reset operation, so returning to the default means setting LeastAllocated explicitly, and Terraform support is still listed as coming soon.
All four parameters, the payloads, the GPU and Neuron weights, and the trade-offs that are hard to undo:
https://www.naviteq.io/blog/eks-opened-up-the-scheduler-mostallocated-is-the-one-with-a-bill-attached/
Amazon EKS now lets you set four control plane parameters directly, including the scheduler scoring strategy. Switching from LeastAllocated to MostAllocated packs pods onto fewer nodes and cuts compute spend. The payloads, the resource weights, and the trade-offs that are hard to undo.