-
when i was running 100 runner at a time i got space issue . my kubernetes have only 750GB storage attached. Run actions/setup-java@v1 by default how much space is needed for one runner , based on it i will put max runner value in HRA |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Please check my answer at #1459 (comment). Which storage medium are you using for emptyDir in your K8s cluster? Is 750GB the size of the root volume, or the secondary volume? |
Beta Was this translation helpful? Give feedback.
Please check my answer at #1459 (comment).
Which storage medium are you using for emptyDir in your K8s cluster? Is 750GB the size of the root volume, or the secondary volume?
AFAIK, emptyDirs are mapped to directories under
/var/lib/kubelet/pods/
on your host. You'll probably need to ensure that your large volume is mounted at/var
or/var/lib
or/var/lib/kubelet
or etc.