Skip to content

Commit 9789c59

Browse files
committed
AWS: Allow IP addresses assignment to EKS nodes of the kOps CI cluster
Signed-off-by: Arnaud Meukam <[email protected]>
1 parent 00cfff9 commit 9789c59

File tree

1 file changed

+8
-0
lines changed
  • infra/aws/terraform/kops-infra-ci

1 file changed

+8
-0
lines changed

infra/aws/terraform/kops-infra-ci/eks.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,16 @@ module "eks" {
5454
most_recent = true
5555
}
5656
vpc-cni = {
57+
before_compute = true
5758
most_recent = true
5859
service_account_role_arn = module.vpc_cni_irsa.iam_role_arn
60+
# Reference docs https://docs.aws.amazon.com/eks/latest/userguide/cni-increase-ip-addresses.html
61+
configuration_values = jsonencode({
62+
env = {
63+
ENABLE_PREFIX_DELEGATION = "true"
64+
WARM_PREFIX_TARGET = "1"
65+
}
66+
})
5967
}
6068
aws-ebs-csi-driver = {
6169
most_recent = true

0 commit comments

Comments
 (0)