There was an error while loading. Please reload this page.
1 parent 8bbd77e commit f55572eCopy full SHA for f55572e
1 file changed
config/tf_modules/k8s-base/nvidia_daemonset.tf
@@ -0,0 +1,15 @@
1
+resource "helm_release" "nvidia_daemonset" {
2
+ chart = "nvidia-device-plugin"
3
+ name = "nvidia-device-plugin"
4
+ repository = "https://nvidia.github.io/k8s-device-plugin"
5
+ version = "0.9.0"
6
+ atomic = true
7
+ cleanup_on_fail = true
8
+ values = [
9
+ yamlencode({
10
+ nodeSelector : {
11
+ gpu : "true"
12
+ }
13
+ })
14
+ ]
15
+}
0 commit comments