
AWS EKS VPC CNI Prefix Delegation
NOTE: I know the cover image has nothing to do with this post, I just found it in my photos and thought it was pretty One thing I wanted to document somewhere is a finding I just while I was working on a project. I’ve been building a Kubernetes cluster using AWS EKS (Elastic Kubernetes Service), with the fantastic terraform-aws-modules Here’s the example I’m using (trimmed for brevity) module "eks" { source = "terraform-aws-modules/eks/aws" version = "~> 21.0" kubernetes_version = "1.34" ... addons = { vpc-cni = { before_compute = true } } ... } Problem I am deploying things but Pods get stuck in Pending with the note “Too many pods 0/N nodes are available”. I checked and have sufficient memory and cpu resources to allocate them. ...


