tall-exabyte-99685
02/29/2024, 6:26 PMtall-exabyte-99685
02/29/2024, 7:29 PM/tmp
did the trick for me.
Posting the solution for posterity:
At the Pod template level:
V1PodSpec(
containers=[
V1Container(
name="primary",
volume_mounts=[
V1VolumeMount(
name="volume",
mount_path="/tmp",
)
],
),
],
volumes=[
V1Volume(
name="volume",
persistent_volume_claim=V1PersistentVolumeClaimVolumeSource(claim_name="pv-claim"),
)
],
)
This resolves this error:
[1/1] currentAttempt done. Last Error: USER::The node was low on resource: ephemeral-storage. Container primary was using 1079476Ki, which exceeds its request of 0.
[primary] terminated with exit code (137). Reason [Error]. Message:
.