AWS EKS Pricing in 2026: The Direct Answer
EKS control plane = $0.10 per hour per cluster = ~$73/month per cluster. That fee is fixed regardless of workload size and applies to every active EKS cluster, including idle ones. Your total bill on top of that depends on whether you run EC2 nodes, Fargate, or EKS Auto Mode.
EKS Compute Options
- EC2 nodes (managed node groups) — you pick the instance type, pay normal EC2 prices. Cheapest at scale. Example: 3× m5.large = ~$210/mo on-demand on top of the $73 control plane.
- Fargate — no nodes to manage, pay per pod vCPU + memory. Higher unit cost (~20% premium) but no waste from over-provisioned nodes. Good for spiky / small / short-lived workloads.
- EKS Auto Mode — AWS manages compute, networking, and storage with a built-in markup. Simpler ops, higher per-resource cost.
What's Missing From This Estimate
This calculator covers control plane + compute (and EBS for EC2 mode). It does not include: data egress, NAT Gateway charges (often a surprise — see the NAT Gateway Calculator), ELB/ALB, observability tooling, or Load Balancer Controller add-ons. For real production budgets, add 20–35% on top of this number.
How to Cut Your EKS Bill 30–60%
- Buy Compute Savings Plans for 1–3 years on the steady portion of compute — 30–60% off on-demand, applies to both EC2 and Fargate
- Run Spot instances for stateless workloads — 60–90% off. Mix Spot + On-Demand via Karpenter or managed node groups for resilience
- Right-size pod requests — use actual P95 CPU/memory usage instead of guesses. The Container Size Calculator gives starting points by runtime
- Add VPC endpoints for S3 + ECR — skips NAT Gateway per-GB charges for those services. Often saves $50–500/mo for container-heavy workloads
- Consolidate clusters — each EKS cluster costs $73/mo just to exist. Use namespaces + RBAC for multi-tenancy when org policy allows
Compare EKS to GKE and AKS
AKS has a free control plane (no $73/mo fee). GKE Autopilot has no cluster fee but charges a premium per pod. For a cross-cloud cost comparison see the Kubernetes Cost Calculator.