Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aleph_message/models/execution/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ class VolumePersistence(str, Enum):

class PersistentVolumeSizeMib(ConstrainedInt):
gt = 0
le = gigabyte_to_mebibyte(Gigabytes(512))
strict = True # Limit to 100 GiB
le = gigabyte_to_mebibyte(Gigabytes(2048))
strict = True # Limit to 2048 GiB


class PersistentVolume(AbstractVolume):
Expand Down
Loading