31 lines
758 B
YAML
31 lines
758 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: DaemonSet
|
||
|
metadata:
|
||
|
name: nvidia-device-plugin-daemonset
|
||
|
namespace: kube-system
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
name: nvidia-device-plugin-ds
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
name: nvidia-device-plugin-ds
|
||
|
spec:
|
||
|
tolerations:
|
||
|
- key: nvidia.com/gpu
|
||
|
operator: Exists
|
||
|
effect: NoSchedule
|
||
|
containers:
|
||
|
- image: nvidia/k8s-device-plugin:1.0.0-beta6
|
||
|
name: nvidia-device-plugin-ctr
|
||
|
securityContext:
|
||
|
allowPrivilegeEscalation: false
|
||
|
volumeMounts:
|
||
|
- name: device-plugin
|
||
|
mountPath: /var/lib/kubelet/device-plugins
|
||
|
volumes:
|
||
|
- name: device-plugin
|
||
|
hostPath:
|
||
|
path: /var/lib/kubelet/device-plugins
|