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
Set the default root volume size according to AMIs being used
1. Set the default root volume sizes of all nodes to the size of snapshot in the AMI used for each node respectively. The old behavior was to have a constant 35GB default
2. Users can overwrite the defaults by the `Size` parameter under `RootVolume`
3. Add a validator to make sure the `Size` specified by the user is equal or greater than the size of the snapshot in the AMI.
For example:
```
Region: us-east-1
Image:
Os: alinux2
HeadNode:
...
Scheduling:
Scheduler: slurm
SlurmQueues:
- Name: queue1
...
- Name: queue2
Image:
CustomAmi: ami-00f25fb4d0adb70a5
...
```
where `ami-00f25fb4d0adb70a5` is a deep learning AMI. The head node and compute nodes in queue1 will have 35GB of root volume, the size of official ParallelCluster AMI. The compute nodes in queue2 will have 167GB of root volume, the size of deep learning AMI
Signed-off-by: Hanwen <hanwenli@amazon.com>
0 commit comments