Add SRIOV and QAT device plugin deploy components
[icn.git] / deploy / kud-plugin-addons / device-plugins / qat / test / test.yaml
1 kind: Pod
2 apiVersion: v1
3 metadata:
4   name: dpdk2
5 spec:
6   containers:
7   - name: dpdkcontainer
8     image: crypto-perf:devel
9     imagePullPolicy: IfNotPresent
10     command: [ "/bin/bash", "-c", "--" ]
11     args: [ "while true; do sleep 300000; done;" ]
12     volumeMounts:
13     - mountPath: /dev/hugepages
14       name: hugepage
15     resources:
16       requests:
17         cpu: "3"
18         memory: "1Gi"
19         qat.intel.com/generic: '2'
20         hugepages-2Mi: "1Gi"
21       limits:
22         cpu: "3"
23         memory: "1Gi"
24         qat.intel.com/generic: '2'
25         hugepages-2Mi: "1Gi"
26     securityContext:
27       capabilities:
28         add:
29           ["IPC_LOCK"]
30   volumes:
31   - name: hugepage
32     emptyDir:
33       medium: HugePages