Skip to content

Commit 949511d

Browse files
chenwanygmarciani
authored andcommitted
Fix update cluster to remove shared EBS volumes can potentially cause node launching failures if MountDir match the same pattern in /etc/exports
Fix in Raid update changelog with the fix in #1808 Signed-off-by: chenwany <[email protected]>
1 parent bea80be commit 949511d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ This file is used to list changes made in each version of the AWS ParallelCluste
2323
- gl: `2022.2.1012-1`
2424
- web_viewer: `2022.2.14521-1`
2525

26+
**BUG FIXES**
27+
- Fix update cluster to remove shared EBS volumes can potentially cause node launching failures if `MountDir` match the same pattern in `/etc/exports`.
28+
2629
3.5.0
2730
------
2831

cookbooks/aws-parallelcluster-config/resources/manage_raid.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
# Unexport RAID directory via nfs
188188
delete_lines "remove volume from /etc/exports" do
189189
path "/etc/exports"
190-
pattern "#{raid_shared_dir} *"
190+
pattern "^#{raid_shared_dir} *"
191191
end
192192

193193
execute "unexport volume" do

0 commit comments

Comments
 (0)