Skip to content

Commit

Permalink
fix(log): fix missing log output in nvidiadeviceplugin server (#735)
Browse files Browse the repository at this point in the history
Signed-off-by: elrondwong <[email protected]>
  • Loading branch information
elrondwong authored Dec 27, 2024
1 parent 35813b5 commit b6ad0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/device-plugin/nvidiadevice/nvinternal/plugin/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ func (plugin *NvidiaDevicePlugin) Allocate(ctx context.Context, reqs *kubeletdev
//nodelock.ReleaseNodeLock(nodename, NodeLockNvidia, current)
return &kubeletdevicepluginv1beta1.AllocateResponse{}, err
}
klog.V(5).Infof("allocate pod name is %s/%s, annotation is %+v", current.Namespace, current.Name, current.Annotations)
klog.Infof("Allocate pod name is %s/%s, annotation is %+v", current.Namespace, current.Name, current.Annotations)

for idx, req := range reqs.ContainerRequests {
// If the devices being allocated are replicas, then (conditionally)
Expand Down

0 comments on commit b6ad0c6

Please sign in to comment.