We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26d0910 commit 6b1e696Copy full SHA for 6b1e696
datacrunch/containers/__init__.py
@@ -8,7 +8,7 @@
8
VolumeMount,
9
SecretMount,
10
SharedFileSystemMount,
11
- ScratchMount,
+ GeneralStorageMount,
12
VolumeMountType,
13
Container,
14
ContainerRegistryCredentials,
examples/containers/container_deployments_example.py
@@ -20,7 +20,7 @@
20
QueueLoadScalingTrigger,
21
UtilizationScalingTrigger,
22
HealthcheckSettings,
23
24
25
26
ContainerRegistrySettings,
@@ -97,7 +97,7 @@ def main() -> None:
97
path="/health"
98
),
99
volume_mounts=[
100
- ScratchMount(
+ GeneralStorageMount(
101
mount_path="/data"
102
103
# Optional: Fileset secret
0 commit comments