Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Kuala Lumpur region (ap-southeast-5) #7910

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading