Commit 3db1127e authored by x1957's avatar x1957

adds log when gpuManager.start() failed

parent 2c6fbc95
......@@ -1224,7 +1224,9 @@ func (kl *Kubelet) initializeModules() error {
}
// Step 7: Initialize GPUs
kl.gpuManager.Start()
if err := kl.gpuManager.Start(); err != nil {
glog.Errorf("Failed to start gpuManager %v", err)
}
// Step 8: Start resource analyzer
kl.resourceAnalyzer.Start()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment