You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cft-templates/pcluster.yaml
+28-3Lines changed: 28 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
AWSTemplateFormatVersion: 2010-09-09
2
2
3
-
Description: Sets up an pcluster on AWS
3
+
Description: Sets up an pcluster on AWS version 3.0 test
4
4
Metadata:
5
5
AWS::CloudFormation::Interface:
6
6
ParameterGroups:
@@ -17,6 +17,7 @@ Metadata:
17
17
- HeadNodeInstanceType
18
18
- VpcId
19
19
- HeadNodeSubnetId
20
+
- FileSystemType
20
21
- FileSystemId
21
22
- Label:
22
23
default: Scheduler Configuration
@@ -113,9 +114,14 @@ Parameters:
113
114
Type: String
114
115
Description: Enter the AMI Id of a custom AMI if you wish to use a non-default AMI. e.g. ami-12345678. The AMI Id entered should exist in this project account and region
115
116
Default: default
117
+
FileSystemType:
118
+
Type: String
119
+
Description: Choose the fileSystem type you want to mount on headnode leave it as NONE if don't want to mount any filesystem.
120
+
AllowedValues: [NONE,EFS, FSxForLustre]
121
+
Default: NONE
116
122
FileSystemId:
117
123
Type: String
118
-
Description: Enter the File System Id of the FSx for Lustre file system which you want to use. e.g. fs-12345678. Leave this field to default if you do not want to use FSx for Lustre
124
+
Description: Enter the File System Id of the EFS/FSxForLustre file system which you want to use. e.g. fs-12345678. Leave this field to default if you do not want to use any file system
119
125
Default: default
120
126
QueueCapacityType:
121
127
Description: The type of the compute resources used in the queue. Supported values are ONDEMAND or SPOT
0 commit comments