Skip to content

Commit 2466565

Browse files
authored
Merge branch 'develop' into wip/mgiacomo/3110/disable-unused-services-0711-1
2 parents 68948c9 + 5907a2f commit 2466565

File tree

50 files changed

+23
-1908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+23
-1908
lines changed

.github/workflows/dokken-system-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
os:
3232
- alinux2
3333
- alinux-2023
34-
- centos7
3534
- ubuntu2004
3635
- ubuntu2204
3736
- rhel8

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ This file is used to list changes made in each version of the AWS ParallelCluste
1010
- Allow custom actions on Login Nodes.
1111
- Disable unused background services wpa_supplicant and cups to improve security.
1212

13+
**BUG FIXES**
14+
- Fix EFA kmod installation with RHEL 8.10 or newer.
15+
1316
3.10.1
1417
------
1518

cookbooks/aws-parallelcluster-environment/resources/cloudwatch/cloudwatch_centos7.rb

Lines changed: 0 additions & 28 deletions
This file was deleted.

cookbooks/aws-parallelcluster-environment/resources/ec2_udev_rules/ec2_udev_rules_centos7.rb

Lines changed: 0 additions & 28 deletions
This file was deleted.

cookbooks/aws-parallelcluster-environment/resources/efa/efa_centos7.rb

Lines changed: 0 additions & 36 deletions
This file was deleted.

cookbooks/aws-parallelcluster-environment/resources/efa/efa_redhat8.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
action_class do
2424
def efa_supported?
25-
if node['platform_version'].to_f < 8.4
25+
if Gem::Version.new(node['platform_version']) < Gem::Version.new("8.4")
2626
log "EFA is not supported in this RHEL version #{node['platform_version']}, supported versions are >= 8.4" do
2727
level :warn
2828
end

cookbooks/aws-parallelcluster-environment/resources/efa/efa_rocky8.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
action_class do
2424
def efa_supported?
25-
if node['platform_version'].to_f < 8.4
25+
if Gem::Version.new(node['platform_version']) < Gem::Version.new("8.4")
2626
log "EFA is not supported in this Rocky Linux version #{node['platform_version']}, supported versions are >= 8.4" do
2727
level :warn
2828
end

cookbooks/aws-parallelcluster-environment/resources/efs/efs_centos7.rb

Lines changed: 0 additions & 27 deletions
This file was deleted.

cookbooks/aws-parallelcluster-environment/resources/ephemeral_drives/ephemeral_drives_centos7.rb

Lines changed: 0 additions & 25 deletions
This file was deleted.

cookbooks/aws-parallelcluster-environment/resources/lustre/lustre_centos7.rb

Lines changed: 0 additions & 122 deletions
This file was deleted.

0 commit comments

Comments
 (0)