diff --git a/lib/single-new-eks-awsnative-fargate-observability-construct/index.ts b/lib/single-new-eks-awsnative-fargate-observability-construct/index.ts index c4c1fe2f..a14bb1a5 100644 --- a/lib/single-new-eks-awsnative-fargate-observability-construct/index.ts +++ b/lib/single-new-eks-awsnative-fargate-observability-construct/index.ts @@ -39,7 +39,7 @@ export default class SingleNewEksAWSNativeFargateobservabilityConstruct { // Define fargate cluster provider and pass the profile options const fargateClusterProvider : blueprints.FargateClusterProvider = new blueprints.FargateClusterProvider({ fargateProfiles, - version: eks.KubernetesVersion.of("1.29") + version: eks.KubernetesVersion.V1_29 }); const certManagerAddOnProps : blueprints.CertManagerAddOnProps = { diff --git a/lib/single-new-eks-fargate-opensource-observability-pattern/index.ts b/lib/single-new-eks-fargate-opensource-observability-pattern/index.ts index a425e998..4e57461a 100644 --- a/lib/single-new-eks-fargate-opensource-observability-pattern/index.ts +++ b/lib/single-new-eks-fargate-opensource-observability-pattern/index.ts @@ -171,7 +171,7 @@ export default class SingleNewEksFargateOpenSourceObservabilityConstruct { // Define fargate cluster provider and pass the profile options const fargateClusterProvider: blueprints.FargateClusterProvider = new blueprints.FargateClusterProvider({ fargateProfiles, - version: eks.KubernetesVersion.of("1.29") + version: eks.KubernetesVersion.V1_29 }); diff --git a/lib/single-new-eks-opensource-observability-pattern/graviton-index.ts b/lib/single-new-eks-opensource-observability-pattern/graviton-index.ts index 0c4fbe8e..db1b86b5 100644 --- a/lib/single-new-eks-opensource-observability-pattern/graviton-index.ts +++ b/lib/single-new-eks-opensource-observability-pattern/graviton-index.ts @@ -178,7 +178,7 @@ export default class SingleNewEksGravitonOpenSourceObservabilityPattern { } const mngProps: blueprints.MngClusterProviderProps = { - version: eks.KubernetesVersion.of("1.29"), + version: eks.KubernetesVersion.V1_29, instanceTypes: [new ec2.InstanceType("m7g.large")], amiType: eks.NodegroupAmiType.AL2_ARM_64, desiredSize: 2, diff --git a/lib/single-new-eks-opensource-observability-pattern/index.ts b/lib/single-new-eks-opensource-observability-pattern/index.ts index db7fe71b..29b3402c 100644 --- a/lib/single-new-eks-opensource-observability-pattern/index.ts +++ b/lib/single-new-eks-opensource-observability-pattern/index.ts @@ -181,7 +181,7 @@ export default class SingleNewEksOpenSourceobservabilityPattern { } const mngProps: blueprints.MngClusterProviderProps = { - version: eks.KubernetesVersion.of("1.29"), + version: eks.KubernetesVersion.V1_29, instanceTypes: [new ec2.InstanceType("m5.2xlarge")], amiType: eks.NodegroupAmiType.AL2_X86_64, desiredSize: 2,