fix(daytona): default disk to 10GB to match platform limit

Signed-off-by: rovle <lovre.pesut@gmail.com>
This commit is contained in:
rovle
2026-03-05 11:37:30 -08:00
parent 3a41079fac
commit 4f1464b3af

View File

@@ -32,7 +32,7 @@ class DaytonaEnvironment(BaseEnvironment):
timeout: int = 60,
cpu: int = 1,
memory: int = 5120, # MB (hermes convention)
disk: int = 51200, # MB (hermes convention)
disk: int = 10240, # MB (Daytona platform max is 10GB)
persistent_filesystem: bool = True,
task_id: str = "default",
):