diff --git a/cmd/dlb_plugin/dlb_plugin.go b/cmd/dlb_plugin/dlb_plugin.go index b4baf183..e29e8f5f 100644 --- a/cmd/dlb_plugin/dlb_plugin.go +++ b/cmd/dlb_plugin/dlb_plugin.go @@ -15,6 +15,7 @@ package main import ( + "flag" "path/filepath" "reflect" "time" @@ -106,6 +107,7 @@ func (dp *DevicePlugin) scan() dpapi.DeviceTree { } func main() { + flag.Parse() klog.V(1).Infof("DLB device plugin started") plugin := NewDevicePlugin(dlbDeviceFilePathRE, sysfsDir)