GPU runners and dind #961
awoimbee
started this conversation in
Show and tell
Replies: 1 comment
-
Thanks, I am wondering how to specify different compose options for dind? For example, I would like to run the dind image nvidia/cuda:11.7.1-cudnn8-devel-ubuntu20.04 with the following arguments:
This is because we are using Google Cloud's container-optimized-system as the instance operating system, which does not support nvidia docker daemon. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I saw 0 information about GPU runners, so I just wanted to say that is works great !
A bit of tinkering is needed to get dind with GPU working tho. I built a custom dind container to allow safe gpu passthrough (check it out).
You will need to set the dind container to use this image in the deployment config of the controller (current helm chart:
image.dindSidecarRepositoryAndTag
).Currently,
docker:dind
is 230MB andnvidia-dind:latest
is 653MB, thenvidia-dind
container will work just fine on non gpu nodes too. ;)Beta Was this translation helpful? Give feedback.
All reactions