qat: update default devices in QatDevicePlugin controller

The default -kernelVfDrivers parameter set by QatDevicePlugin controller
was not in sync with the plugin parameters. Update.

Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
This commit is contained in:
Mikko Ylinen 2022-03-01 07:39:18 +02:00
parent b7d0e7e168
commit 289fbb2eaa

View File

@ -182,7 +182,7 @@ func getPodArgs(qdp *devicepluginv1.QatDevicePlugin) []string {
args = append(args, "-kernel-vf-drivers", strings.Join(drvs, ","))
} else {
args = append(args, "-kernel-vf-drivers", "dh895xccvf,c6xxvf,c3xxxvf,d15xxvf")
args = append(args, "-kernel-vf-drivers", "c6xxvf,4xxxvf")
}
if qdp.Spec.MaxNumDevices > 0 {