Skip to content

Commit e54188e

Browse files
authored
Feat: new persistent volume size limit (#126)
1 parent 4ffeddd commit e54188e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aleph_message/models/execution/volume.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class VolumePersistence(str, Enum):
6060

6161
class PersistentVolumeSizeMib(ConstrainedInt):
6262
gt = 0
63-
le = gigabyte_to_mebibyte(Gigabytes(512))
64-
strict = True # Limit to 100 GiB
63+
le = gigabyte_to_mebibyte(Gigabytes(2048))
64+
strict = True # Limit to 2048 GiB
6565

6666

6767
class PersistentVolume(AbstractVolume):

0 commit comments

Comments
 (0)