Skip to content

Commit bfcac03

Browse files
committed
deployments: fix QAT plugin command path
Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
1 parent ce6b47b commit bfcac03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/docker/intel-qat-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ RUN chmod a+x /go/bin/qat_plugin \
4545
FROM scratch as final
4646
COPY --from=builder /install_root /
4747
ENV PATH=/usr/local/bin
48-
CMD ["/usr/local/bin/intel_qat_device_plugin"]
48+
ENTRYPOINT ["/usr/local/bin/intel_qat_device_plugin"]

deployments/qat_plugin/qat_plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
name: intel-qat-plugin-config
3939
key: DEBUG
4040
imagePullPolicy: IfNotPresent
41-
command: ["/usr/bin/intel_qat_device_plugin", "-dpdk-driver", "$(DPDK_DRIVER)", "-kernel-vf-drivers", "$(KERNEL_VF_DRIVERS)", "-max-num-devices", "$(MAX_NUM_DEVICES)", "-debug", "$(DEBUG)"]
41+
args: ["-dpdk-driver", "$(DPDK_DRIVER)", "-kernel-vf-drivers", "$(KERNEL_VF_DRIVERS)", "-max-num-devices", "$(MAX_NUM_DEVICES)", "-debug", "$(DEBUG)"]
4242
volumeMounts:
4343
- name: pcidir
4444
mountPath: /sys/bus/pci

deployments/qat_plugin/qat_plugin_kernel_mode.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
privileged: true
2020
image: intel/intel-qat-plugin:devel
2121
imagePullPolicy: IfNotPresent
22-
command: ["/usr/bin/intel_qat_device_plugin", "-mode", "kernel"]
22+
args: ["-mode", "kernel"]
2323
volumeMounts:
2424
- name: devfs
2525
mountPath: /dev

0 commit comments

Comments
 (0)