Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include MixedInstancesPolicy LaunchTemplate for validation #7661

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions pkg/actions/nodegroup/scale.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (

"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/autoscaling"
autoscalingtypes "github.com/aws/aws-sdk-go-v2/service/autoscaling/types"
"github.com/aws/aws-sdk-go-v2/service/ec2"
awseks "github.com/aws/aws-sdk-go-v2/service/eks"
ekstypes "github.com/aws/aws-sdk-go-v2/service/eks/types"
Expand Down Expand Up @@ -162,10 +163,20 @@ func validateNodeGroupAMI(ctx context.Context, awsProvider api.ClusterProvider,
if len(asg.AutoScalingGroups) != 1 {
return fmt.Errorf("expected to find exactly one Auto Scaling group for nodegroup; got %d", len(asg.AutoScalingGroups))
}
lt := asg.AutoScalingGroups[0].LaunchTemplate
if lt == nil {
logger.Warning("nodegroup with Auto Scaling group %q does not have a launch template", asgName)
return nil

var lt *autoscalingtypes.LaunchTemplateSpecification
if asg.AutoScalingGroups[0].MixedInstancesPolicy == nil {
lt = asg.AutoScalingGroups[0].LaunchTemplate
if lt == nil {
logger.Warning("nodegroup with Auto Scaling group %q does not have a launch template", asgName)
return nil
}
} else {
// ASG only use the LT in MixedInstancesPolicy if the ASG has a MixedInstancesPolicy
if asg.AutoScalingGroups[0].MixedInstancesPolicy.LaunchTemplate == nil {
return fmt.Errorf("expected the MixedInstancesPolicy in Auto Scaling group %q to include a launch template", asgName)
}
lt = asg.AutoScalingGroups[0].MixedInstancesPolicy.LaunchTemplate.LaunchTemplateSpecification
}

ltData, err := awsProvider.EC2().DescribeLaunchTemplateVersions(ctx, &ec2.DescribeLaunchTemplateVersionsInput{
Expand Down
69 changes: 69 additions & 0 deletions pkg/actions/nodegroup/scale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,75 @@ var _ = Describe("Scale", func() {
}
}

mockMixedInstanceNodeGroupAMI := func(missingLaunchTemplate bool, asgName string) {
asgOutputWithMixedInstancesPolicy := &autoscaling.DescribeAutoScalingGroupsOutput{
AutoScalingGroups: []autoscalingtypes.AutoScalingGroup{
{
MixedInstancesPolicy: &autoscalingtypes.MixedInstancesPolicy{},
},
},
}
if !missingLaunchTemplate {
asgOutputWithMixedInstancesPolicy.AutoScalingGroups[0].MixedInstancesPolicy.LaunchTemplate = &autoscalingtypes.LaunchTemplate{
LaunchTemplateSpecification: &autoscalingtypes.LaunchTemplateSpecification{
LaunchTemplateId: aws.String("lt-1234"),
LaunchTemplateName: aws.String("eksctl-test-ng"),
Version: aws.String("1"),
},
}
}
p.MockASG().On("DescribeAutoScalingGroups", mock.Anything, mock.MatchedBy(func(input *autoscaling.DescribeAutoScalingGroupsInput) bool {
return len(input.AutoScalingGroupNames) == 1 && input.AutoScalingGroupNames[0] == asgName
})).Return(asgOutputWithMixedInstancesPolicy, nil)
p.MockEC2().On("DescribeLaunchTemplateVersions", mock.Anything, mock.MatchedBy(func(input *ec2.DescribeLaunchTemplateVersionsInput) bool {
return len(input.Versions) == 1 && input.LaunchTemplateId != nil && *input.LaunchTemplateId == "lt-1234"
})).Return(&ec2.DescribeLaunchTemplateVersionsOutput{
LaunchTemplateVersions: []ec2types.LaunchTemplateVersion{
{
LaunchTemplateData: &ec2types.ResponseLaunchTemplateData{
ImageId: aws.String("ami-1234"),
},
},
},
}, nil)
describeImagesOutput := &ec2.DescribeImagesOutput{
Images: []ec2types.Image{
{
ImageId: aws.String("ami-1234"),
},
},
}
p.MockEC2().On("DescribeImages", mock.Anything, mock.MatchedBy(func(input *ec2.DescribeImagesInput) bool {
return len(input.ImageIds) == 1 && input.ImageIds[0] == "ami-1234"
})).Return(describeImagesOutput, nil)

p.MockASG().On("UpdateAutoScalingGroup", mock.Anything, &autoscaling.UpdateAutoScalingGroupInput{
AutoScalingGroupName: aws.String(asgName),
MinSize: aws.Int32(1),
DesiredCapacity: aws.Int32(3),
}).Return(nil, nil)
}

When("the ASG exists with a MixedInstancesPolicy", func() {
asgName := "asg-name"

BeforeEach(func() {
mockNodeGroupStack(ngName, asgName)
})

It("fails for missing launch template", func() {
mockMixedInstanceNodeGroupAMI(true, asgName)
err := m.Scale(context.Background(), ng, false)
Expect(err).To(MatchError(fmt.Sprintf("failed to scale nodegroup %q for cluster %q, error: expected the MixedInstancesPolicy in Auto Scaling group %q to include a launch template", ng.Name, clusterName, asgName)))
})

It("scales the nodegroup", func() {
mockMixedInstanceNodeGroupAMI(false, asgName)
err := m.Scale(context.Background(), ng, false)
Expect(err).NotTo(HaveOccurred())
})
})

When("the ASG exists", func() {
BeforeEach(func() {
mockNodeGroupStack(ngName, "asg-name")
Expand Down