We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c9e858 commit f0d63bbCopy full SHA for f0d63bb
datacrunch/containers/containers.py
@@ -125,10 +125,13 @@ class VolumeMount:
125
Attributes:
126
type: Type of volume mount.
127
mount_path: Path where the volume should be mounted in the container.
128
+ size_in_mb: Size of the volume in megabytes. Deprecated: use MemoryMount for memory volumes instead.
129
"""
130
131
type: VolumeMountType
132
mount_path: str
133
+ # Deprecated: use MemoryMount for memory volumes instead.
134
+ size_in_mb: Optional[int] = None
135
136
137
@dataclass_json(undefined=Undefined.EXCLUDE)
0 commit comments