Skip to content

Commit add5ac4

Browse files
authored
fix integration test with eks default version change (#8665)
1 parent e6f98c3 commit add5ac4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration/tests/custom_ami/custom_ami_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var _ = BeforeSuite(func() {
5858

5959
// retrieve AL2 AMI
6060
input := &awsssm.GetParameterInput{
61-
Name: aws.String(fmt.Sprintf("/aws/service/eks/optimized-ami/%s/amazon-linux-2/recommended/image_id", params.Version)),
61+
Name: aws.String(fmt.Sprintf("/aws/service/eks/optimized-ami/%s/amazon-linux-2/recommended/image_id", api.Version1_32)),
6262
}
6363
output, err := ssm.GetParameter(context.Background(), input)
6464
Expect(err).NotTo(HaveOccurred())

integration/tests/dry_run/dry_run_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ accessConfig:
6868
authenticationMode: API_AND_CONFIG_MAP
6969
addonsConfig: {}
7070
nodeGroups:
71-
- amiFamily: AmazonLinux2
71+
- amiFamily: AmazonLinux2023
7272
containerRuntime: containerd
7373
disableIMDSv1: true
7474
disablePodIMDS: false

0 commit comments

Comments
 (0)