From c47df09db2692cf611b05e3b7b36d0778450b7f0 Mon Sep 17 00:00:00 2001 From: Tibi <110664232+TiberiuGC@users.noreply.github.com> Date: Tue, 30 Jul 2024 18:47:12 +0300 Subject: [PATCH] Add support for Kuala Lumpur region (ap-southeast-5) --- pkg/apis/eksctl.io/v1alpha5/types.go | 10 ++++++++++ userdocs/src/getting-started.md | 2 ++ userdocs/theme/home.html | 1 + 3 files changed, 13 insertions(+) diff --git a/pkg/apis/eksctl.io/v1alpha5/types.go b/pkg/apis/eksctl.io/v1alpha5/types.go index 6f6cddf09b..9ce8888cc1 100644 --- a/pkg/apis/eksctl.io/v1alpha5/types.go +++ b/pkg/apis/eksctl.io/v1alpha5/types.go @@ -171,6 +171,9 @@ const ( // RegionAPSouthEast4 represents the Asia-Pacific South East Region Melbourne RegionAPSouthEast4 = "ap-southeast-4" + // RegionAPSouthEast5 represents the Asia-Pacific South East Region Kuala Lumpur + RegionAPSouthEast5 = "ap-southeast-5" + // RegionAPSouth1 represents the Asia-Pacific South Region Mumbai RegionAPSouth1 = "ap-south-1" @@ -385,6 +388,10 @@ const ( // eksResourceAccountAPSouthEast4 defines the AWS EKS account ID that provides node resources in ap-southeast-4 eksResourceAccountAPSouthEast4 = "491585149902" + + // eksResourceAccountAPSouthEast5 defines the AWS EKS account ID that provides node resources in ap-southeast-5 + eksResourceAccountAPSouthEast5 = "151610086707" + // eksResourceAccountUSISOEast1 defines the AWS EKS account ID that provides node resources in us-iso-east-1 eksResourceAccountUSISOEast1 = "725322719131" @@ -516,6 +523,7 @@ func SupportedRegions() []string { RegionAPSouthEast2, RegionAPSouthEast3, RegionAPSouthEast4, + RegionAPSouthEast5, RegionAPSouth1, RegionAPSouth2, RegionAPEast1, @@ -662,6 +670,8 @@ func EKSResourceAccountID(region string) string { return eksResourceAccountAPSouthEast3 case RegionAPSouthEast4: return eksResourceAccountAPSouthEast4 + case RegionAPSouthEast5: + return eksResourceAccountAPSouthEast5 case RegionILCentral1: return eksResourceAccountILCentral1 case RegionUSISOEast1: diff --git a/userdocs/src/getting-started.md b/userdocs/src/getting-started.md index a41463088d..21b4c2cb7c 100644 --- a/userdocs/src/getting-started.md +++ b/userdocs/src/getting-started.md @@ -1,6 +1,8 @@ # Getting started !!! tip "New for 2024" + `eksctl` now supports new region Kuala Lumpur (`ap-southeast-5`) + EKS Add-ons now support receiving IAM permissions via [EKS Pod Identity Associations](/usage/pod-identity-associations/#eks-add-ons-support-for-pod-identity-associations) `eksctl` now supports AMIs based on AmazonLinux2023 diff --git a/userdocs/theme/home.html b/userdocs/theme/home.html index d8955c760b..8fb824af8b 100644 --- a/userdocs/theme/home.html +++ b/userdocs/theme/home.html @@ -533,6 +533,7 @@

eksctl create cluster

Usage Outposts

Check out latest eksctl features

+

Support for Kuala Lumpur region (ap-southeast-5)

EKS Add-ons support receiving IAM permissions via EKS Pod Identity Associations.

Support for AMIs based on AmazonLinux2023

Configuring cluster access management via AWS EKS Access Entries.