mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00
33 lines
762 B
YAML
33 lines
762 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: intel-qat-plugin
|
|
spec:
|
|
template:
|
|
spec:
|
|
initContainers:
|
|
- name: intel-qat-initcontainer
|
|
env:
|
|
- name: NODE_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: spec.nodeName
|
|
image: intel/intel-qat-initcontainer:0.27.1
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: sysfs
|
|
mountPath: /sys
|
|
- name: qat-config
|
|
mountPath: /qat-init/conf
|
|
volumes:
|
|
- name: sysfs
|
|
hostPath:
|
|
path: /sys
|
|
- name: qat-config
|
|
configMap:
|
|
name: qat-config
|
|
optional: true
|
|
defaultMode: 0440
|