@@ -499,7 +499,7 @@ export class InfraStack extends Stack {
499
499
singleNodeInstance = new Instance ( this , 'single-node-instance' , {
500
500
vpc : props . vpc ,
501
501
instanceType : singleNodeInstanceType ,
502
- machineImage : MachineImage . latestAmazonLinux2023 (
502
+ machineImage : MachineImage . latestAmazonLinux2 (
503
503
{
504
504
cpuType : instanceCpuType ,
505
505
} ,
@@ -561,7 +561,7 @@ export class InfraStack extends Stack {
561
561
const managerNodeAsg = new AutoScalingGroup ( this , 'managerNodeAsg' , {
562
562
launchTemplate : new LaunchTemplate ( this , 'managerNodeLt' , {
563
563
instanceType : defaultInstanceType ,
564
- machineImage : MachineImage . latestAmazonLinux2023 ( {
564
+ machineImage : MachineImage . latestAmazonLinux2 ( {
565
565
cpuType : instanceCpuType ,
566
566
} ) ,
567
567
role : this . instanceRole ,
@@ -600,7 +600,7 @@ export class InfraStack extends Stack {
600
600
const seedNodeAsg = new AutoScalingGroup ( this , 'seedNodeAsg' , {
601
601
launchTemplate : new LaunchTemplate ( this , 'seedNodeLt' , {
602
602
instanceType : ( seedConfig === 'seed-manager' ) ? defaultInstanceType : this . dataInstanceType ,
603
- machineImage : MachineImage . latestAmazonLinux2023 ( {
603
+ machineImage : MachineImage . latestAmazonLinux2 ( {
604
604
cpuType : instanceCpuType ,
605
605
} ) ,
606
606
role : this . instanceRole ,
@@ -641,7 +641,7 @@ export class InfraStack extends Stack {
641
641
const dataNodeAsg = new AutoScalingGroup ( this , 'dataNodeAsg' , {
642
642
launchTemplate : new LaunchTemplate ( this , 'dataNodeLt' , {
643
643
instanceType : this . dataInstanceType ,
644
- machineImage : MachineImage . latestAmazonLinux2023 ( {
644
+ machineImage : MachineImage . latestAmazonLinux2 ( {
645
645
cpuType : instanceCpuType ,
646
646
} ) ,
647
647
role : this . instanceRole ,
@@ -678,7 +678,7 @@ export class InfraStack extends Stack {
678
678
clientNodeAsg = new AutoScalingGroup ( this , 'clientNodeAsg' , {
679
679
launchTemplate : new LaunchTemplate ( this , 'clientNodelt' , {
680
680
instanceType : defaultInstanceType ,
681
- machineImage : MachineImage . latestAmazonLinux2023 ( {
681
+ machineImage : MachineImage . latestAmazonLinux2 ( {
682
682
cpuType : instanceCpuType ,
683
683
} ) ,
684
684
role : this . instanceRole ,
@@ -716,7 +716,7 @@ export class InfraStack extends Stack {
716
716
const mlNodeAsg = new AutoScalingGroup ( this , 'mlNodeAsg' , {
717
717
launchTemplate : new LaunchTemplate ( this , 'mlNodeLt' , {
718
718
instanceType : this . mlInstanceType ,
719
- machineImage : MachineImage . latestAmazonLinux2023 ( {
719
+ machineImage : MachineImage . latestAmazonLinux2 ( {
720
720
cpuType : instanceCpuType ,
721
721
} ) ,
722
722
role : this . instanceRole ,
0 commit comments