Skip to content
Discussion options

You must be logged in to vote

Hi @haircommander , yes at least it was surprising simple.
The only thing you need in a running Kubernets cluster is to install the NVIDIA GPU Operator. This can be done with a helm chart:

helm install --wait --generate-name \
        -n gpu-operator --create-namespace \
        nvidia/gpu-operator 

And this script will start the operator that is automatically installing the needed drivers. Or if you have already installed an nvidia driver on your worker node you can disable the installation of the driver by the operator:

helm install --wait --generate-name \
     -n gpu-operator --create-namespace \
     nvidia/gpu-operator \
     --set driver.enabled=false

It may take a while if the o…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@haircommander
Comment options

Answer selected by rsoika
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants