Fix --cdi.enabled for Docker

Instead of relying only on Experimental mode, the docker daemon
config requires that CDI is an opt-in feature.

Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
Evan Lezar
2024-01-23 14:56:01 +01:00
parent b3519fadc4
commit ab598f004d
2 changed files with 2 additions and 1 deletions

View File

@@ -310,7 +310,7 @@ func enableCDI(config *config, cfg engine.Interface) error {
case "containerd":
cfg.Set("enable_cdi", true)
case "docker":
cfg.Set("experimental", true)
cfg.Set("features", map[string]bool{"cdi": true})
default:
return fmt.Errorf("enabling CDI in %s is not supported", config.runtime)
}