intel-device-plugins-for-ku.../deployments/dsa_plugin/overlays/dsa_initcontainer/dsa_initcontainer.yaml
Mikko Ylinen ef6ecb7680 images: set 0.25.0 tag for the release
Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
2022-10-17 22:48:03 +03:00

40 lines
1.0 KiB
YAML

apiVersion: apps/v1
kind: DaemonSet
metadata:
name: intel-dsa-plugin
spec:
template:
spec:
initContainers:
- name: intel-idxd-config-initcontainer
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-idxd-config-initcontainer:0.25.0
securityContext:
readOnlyRootFilesystem: true
privileged: true
volumeMounts:
- mountPath: /sys/bus/dsa
name: sys-bus-dsa
- mountPath: /sys/devices
name: sys-devices
- mountPath: /idxd-init/conf
name: intel-dsa-config-volume
- mountPath: /idxd-init/scratch
name: scratch
volumes:
- name: sys-bus-dsa
hostPath:
path: /sys/bus/dsa
- name: sys-devices
hostPath:
path: /sys/devices
- name: intel-dsa-config-volume
configMap:
name: intel-dsa-config
- name: scratch
emptyDir: {}