pulumi-eks icon indicating copy to clipboard operation
pulumi-eks copied to clipboard

WARM_IP_TARGET does not apply to v1.7.5 of CNI yaml.

Open emiioan opened this issue 3 years ago • 1 comments

Hello,

It seems that in v1.7.5 vpc-cni when you explicit add warmIpTarget to cluster arguments under vpcCniOptions, the variable WARM_IP_TARGET is not applied to aws-node daemon set. If this variable is not set, than there is no IP address limitation on worker node and we managed to remain with no available ip address in less than 6 hours in /22 subnet.

This is a sample code:

const cluster = new eks.Cluster(this.args.clusterName, {
            .......
            vpcCniOptions: {
                warmIpTarget: 2,
                securityContextPrivileged: true
            },

emiioan avatar May 19 '21 07:05 emiioan

Related to #649

stack72 avatar Jul 29 '22 15:07 stack72