2 Answers
- Newest
- Most votes
- Most comments
1
Hi, when you create EKS (for example from Terraform), ASG will be automatically created for the node group. So, to change the capacity of EKS nodes you need to change ASG params. If you want it to be done automatically per load, you need to use Cluster Autoscaler: https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler. If you compare node group min, desired, max capacity and ASG min, desired, max capacity, you should see the same values.
answered 3 years ago
0
More detailed similar answer is provided at this link as well : https://repost.aws/questions/QUlmqEwKfrQe-clJXvXXCu6w/auto-scale-eks-nodes#ANCjzD02BbQVqi2AaM32tvcw
answered 3 years ago
Relevant content
- asked 2 years ago
- asked 4 years ago
- asked 2 years ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 5 months ago

Thanks but found an easier way to modify EKS nodes using Systems manager automation doc "AWS-UpdateEKSManagedNodeGroup" and just modifying the NodeGroupDesiredSize field.