Skip to content

Commit e49c40e

Browse files
committed
Add rhel8 to supported OSs for ARM (it was already in supported OSs for x86_64)
1 parent 0d1fae8 commit e49c40e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/src/pcluster/cli/commands/dcv_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ def get_supported_dcv_os(architecture):
1616
"""Return a list of all the operating system supported by DCV."""
1717
architectures_dict = {
1818
"x86_64": SUPPORTED_OSES,
19-
"arm64": ["ubuntu1804", "alinux2", "centos7"],
19+
"arm64": ["ubuntu1804", "alinux2", "centos7", "rhel8"],
2020
}
2121
return architectures_dict.get(architecture, [])

cli/tests/pcluster/validators/test_cluster_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1305,7 +1305,7 @@ def test_shared_storage_mount_dir_validator(mount_dir, expected_message):
13051305
(False, "alinux2", "t2.micro", None, None, None), # doesn't fail because DCV is disabled
13061306
(True, "ubuntu1804", "m6g.xlarge", None, None, None),
13071307
(True, "alinux2", "m6g.xlarge", None, None, None),
1308-
(True, "rhel8", "m6g.xlarge", None, None, "Please double check the os configuration"),
1308+
(True, "rhel8", "m6g.xlarge", None, None, None),
13091309
(True, "ubuntu2004", "m6g.xlarge", None, None, "Please double check the os configuration"),
13101310
],
13111311
)

0 commit comments

Comments
 (0)