mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00

There are a few things left un-renamed after \#771. Rename those to idxd-config-initcontainer. Signed-off-by: Hyeongju Johannes Lee <hyeongju.lee@intel.com>
30 lines
746 B
YAML
30 lines
746 B
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:devel
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- mountPath: /sys/devices
|
|
name: sys-devices
|
|
- mountPath: /idxd-init/conf
|
|
name: intel-dsa-config-volume
|
|
volumes:
|
|
- name: sys-devices
|
|
hostPath:
|
|
path: /sys/devices
|
|
- name: intel-dsa-config-volume
|
|
configMap:
|
|
name: intel-dsa-config
|