Skip to content

Commit

Permalink
Add support for Kuala Lumpur region (ap-southeast-5) (eksctl-io#7910)
Browse files Browse the repository at this point in the history
  • Loading branch information
TiberiuGC committed Oct 7, 2024
1 parent 9481a64 commit 618f856
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkg/apis/eksctl.io/v1alpha5/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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"

Expand Down Expand Up @@ -516,6 +523,7 @@ func SupportedRegions() []string {
RegionAPSouthEast2,
RegionAPSouthEast3,
RegionAPSouthEast4,
RegionAPSouthEast5,
RegionAPSouth1,
RegionAPSouth2,
RegionAPEast1,
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions userdocs/src/getting-started.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions userdocs/theme/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ <h2><code>eksctl create cluster</code></h2>
<a href="/usage/outposts" tabindex="-1" title="Usage Outposts"><img src="assets/images/outposts.png" alt="Usage Outposts" loading="lazy"></a>
<figcaption class="md-typeset">
<h2>Check out latest eksctl features</h2>
<p>Support for Kuala Lumpur region (<code>ap-southeast-5</code>)</p>
<p>EKS Add-ons support receiving IAM permissions via <a href="/usage/pod-identity-associations/#eks-add-ons-support-for-pod-identity-associations">EKS Pod Identity Associations</a>.</p>
<p>Support for AMIs based on AmazonLinux2023</p>
<p>Configuring cluster access management via <a href="/usage/access-entries">AWS EKS Access Entries</a>.</p>
Expand Down

0 comments on commit 618f856

Please sign in to comment.