We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eca239a commit 4b33644Copy full SHA for 4b33644
datacrunch/containers/containers.py
@@ -90,10 +90,11 @@ class VolumeMount:
90
91
:param type: Type of volume mount
92
:param mount_path: Path where the volume should be mounted in the container
93
+ :param size_in_mb: Size of the volume in megabytes, only used for memory volume mounts
94
"""
95
type: VolumeMountType
96
mount_path: str
- size_in_gb: Optional[int] = None
97
+ size_in_mb: Optional[int] = None
98
99
100
@dataclass_json
0 commit comments