Skip to content

Commit fac752f

Browse files
authored
Add support for CGK region (#6365)
1 parent 4ebb112 commit fac752f

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ CHANGELOG
88

99
- Add support for custom actions on login nodes.
1010
- Allow DCV connection on login nodes.
11+
- Add support for ap-southeast-3 region.
1112

1213
**BUG FIXES**
1314
- Fix validator `EfaPlacementGroupValidator` so that it does not suggest to configure a Placement Group when Capacity Blocks are used.

cli/src/pcluster/resources/supported-regions

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ap-northeast-2
55
ap-south-1
66
ap-southeast-1
77
ap-southeast-2
8+
ap-southeast-3
89
ca-central-1
910
cn-north-1
1011
cn-northwest-1
@@ -24,4 +25,4 @@ us-isob-east-1
2425
us-gov-east-1
2526
us-gov-west-1
2627
us-west-1
27-
us-west-2
28+
us-west-2

tests/integration-tests/configs/common.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{%- set REGIONS_COMMERCIAL = ["us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "sa-east-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "eu-north-1", "me-south-1", "af-south-1", "eu-south-1", "il-central-1"] -%}
1+
{%- set REGIONS_COMMERCIAL = ["us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "sa-east-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "eu-north-1", "me-south-1", "af-south-1", "eu-south-1", "il-central-1"] -%}
22
{%- set REGIONS_CHINA = ["cn-north-1", "cn-northwest-1"] -%}
33
{%- set REGIONS_GOVCLOUD = ["us-gov-west-1", "us-gov-east-1"] -%}
44
{%- set REGIONS_ALL = REGIONS_COMMERCIAL + REGIONS_CHINA + REGIONS_GOVCLOUD -%}

tests/integration-tests/configs/develop.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ test-suites:
388388
schedulers: ["slurm"]
389389
test_security_groups.py::test_overwrite_sg:
390390
dimensions:
391-
- regions: ["eu-north-1"]
391+
- regions: ["ap-southeast-3"]
392392
instances: {{ common.INSTANCES_DEFAULT_X86 }}
393393
oss: ["rocky9"]
394394
schedulers: ["slurm"]
@@ -401,7 +401,7 @@ test-suites:
401401
scaling:
402402
test_scaling.py::test_job_level_scaling:
403403
dimensions:
404-
- regions: ["us-west-2"]
404+
- regions: ["ap-southeast-3"]
405405
instances: {{ common.INSTANCES_DEFAULT_ARM }}
406406
oss: ["ubuntu2204"]
407407
schedulers: ["slurm"]
@@ -446,7 +446,7 @@ test-suites:
446446
schedulers: [ "slurm" ]
447447
test_slurm.py::test_error_handling:
448448
dimensions:
449-
- regions: ["ca-central-1"]
449+
- regions: ["ap-southeast-3"]
450450
instances: {{ common.INSTANCES_DEFAULT_X86 }}
451451
oss: ["rocky9"]
452452
schedulers: ["slurm"]
@@ -512,7 +512,7 @@ test-suites:
512512
schedulers: ["slurm"]
513513
test_slurm.py::test_slurm_custom_config_parameters:
514514
dimensions:
515-
- regions: ["ap-northeast-2"]
515+
- regions: ["ap-southeast-3"]
516516
instances: {{ common.INSTANCES_DEFAULT_X86 }}
517517
oss: ["ubuntu2004"]
518518
schedulers: ["slurm"]

0 commit comments

Comments
 (0)