Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1d95d21

Browse files
committedMar 17, 2025·
add tmpfs to runners
1 parent 14acdfc commit 1d95d21

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎k8s/timoni/runner/templates/deployment.cue

+8
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ import (
4747
}
4848
resources: #config.resources
4949
securityContext: privileged: true
50+
volumeMounts: [{
51+
name: "tmp"
52+
mountPath: "/tmp"
53+
}]
54+
}]
55+
volumes: [{
56+
name: "tmp"
57+
emptyDir: medium: "Memory"
5058
}]
5159
}
5260
}

0 commit comments

Comments
 (0)
Please sign in to comment.