Skip to content

Commit 257f0d6

Browse files
authored
Fix ManagedNodeGroup instances not registering with EKS when using enableIMDSv2 (#1287)
1 parent db81ca1 commit 257f0d6

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

examples/managed-nodegroups/index.ts

+7
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,10 @@ const managedNodeGroup2 = eks.createManagedNodeGroup(
6969
},
7070
cluster
7171
);
72+
73+
// Create a simple AWS managed node group with IMDSv2 enabled
74+
const managedNodeGroup3 = eks.createManagedNodeGroup("example-managed-ng3", {
75+
cluster: cluster,
76+
nodeRole: role2,
77+
enableIMDSv2: true,
78+
});

examples/tests/managed-ng-with-version/index.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import * as iam from "./iam";
55
// IAM roles for the node groups.
66
const role0 = iam.createRole("example-role0");
77
const role1 = iam.createRole("example-role1");
8+
const role2 = iam.createRole("example-role2");
89

910
// Create a new VPC
1011
const eksVpc = new awsx.ec2.Vpc("eks-vpc", {
@@ -21,7 +22,7 @@ const cluster = new eks.Cluster("example-managed-nodegroups", {
2122
publicSubnetIds: eksVpc.publicSubnetIds,
2223
// Private subnets will be used for cluster nodes
2324
privateSubnetIds: eksVpc.privateSubnetIds,
24-
instanceRoles: [role0, role1],
25+
instanceRoles: [role0, role1, role2],
2526
});
2627

2728
// Export the cluster's kubeconfig.
@@ -43,3 +44,11 @@ const managedNodeGroup1 = eks.createManagedNodeGroup("example-managed-ng1", {
4344
nodeRoleArn: role1.arn,
4445
version: cluster.eksCluster.version,
4546
}, cluster);
47+
48+
// Managed node group with IMDSv2 enabled
49+
const managedNodeGroup2 = eks.createManagedNodeGroup("example-managed-ng2", {
50+
cluster: cluster,
51+
nodeRole: role2,
52+
version: cluster.eksCluster.version,
53+
enableIMDSv2: true,
54+
}, cluster);

nodejs/eks/nodegroup.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -1742,7 +1742,10 @@ function createManagedNodeGroupInternal(
17421742
let launchTemplate: aws.ec2.LaunchTemplate | undefined;
17431743
if (args.kubeletExtraArgs || args.bootstrapExtraArgs || args.enableIMDSv2) {
17441744
launchTemplate = createMNGCustomLaunchTemplate(name, args, core, parent, provider);
1745-
// EKS doesn't allow setting the kubernetes version in the node group if a custom launch template is used.
1745+
}
1746+
1747+
if (launchTemplate?.imageId) {
1748+
// EKS doesn't allow setting the kubernetes version in the node group if an image id is provided within the launch template.
17461749
delete nodeGroupArgs.version;
17471750
}
17481751

@@ -1843,9 +1846,9 @@ Content-Type: text/x-shellscript; charset="us-ascii"
18431846
{
18441847
userData,
18451848
metadataOptions,
1846-
// We need to always supply an imageId, otherwise AWS will attempt to merge the user data which will result in
1849+
// We need to supply an imageId if userData is set, otherwise AWS will attempt to merge the user data which will result in
18471850
// nodes failing to join the cluster.
1848-
imageId: getRecommendedAMI(args, core.cluster.version, parent),
1851+
imageId: userData ? getRecommendedAMI(args, core.cluster.version, parent) : undefined,
18491852
},
18501853
{ parent, provider },
18511854
);

0 commit comments

Comments
 (0)