You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change looks good to me; we should probably look at rolling this into daemon.NewDaemon, as there's some validation and setup steps being performed in that function as well (and possibly adjusting of config options), so possibly this should go after that;
// Ensure that we have a correct root key limit for launching containers.
iferr:=modifyRootKeyLimit(); err!=nil {
log.G(ctx).Warnf("unable to modify root key limit, number of containers could be limited by this quota: %v", err)
}
// Ensure we have compatible and valid configuration options
iferr:=verifyDaemonSettings(config); err!=nil {
returnnil, err
}
and
For a follow up -- perhaps we should consider a centralized function to register all available device drivers. Currently it's a bit inconsistent because the nvidia driver initializes itself via func init and the CDI is registered manually (because it needs a feature flag check).
The text was updated successfully, but these errors were encountered:
Description
Some follow-up work identified in #49990
and
The text was updated successfully, but these errors were encountered: