mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00
26 lines
651 B
YAML
26 lines
651 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: intel-dlb-plugin
|
|
spec:
|
|
template:
|
|
spec:
|
|
initContainers:
|
|
- name: intel-dlb-initcontainer
|
|
image: intel/intel-dlb-initcontainer:0.25.0
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: sysfs-driver-dlb2
|
|
mountPath: /sys/bus/pci/drivers/dlb2
|
|
- name: sysfs-devices
|
|
mountPath: /sys/devices
|
|
volumes:
|
|
- name: sysfs-driver-dlb2
|
|
hostPath:
|
|
path: /sys/bus/pci/drivers/dlb2
|
|
- name: sysfs-devices
|
|
hostPath:
|
|
path: /sys/devices
|