nvidia-container-toolkit/cmd/nvidia-container-runtime
Evan Lezar 11aa1d2a7d FIX: Factor out specModifier construction into function
Signed-off-by: Evan Lezar <elezar@nvidia.com>
2022-04-06 15:18:12 +02:00
..
modifier FIX: Don't log that hooks is being removed if it is not 2022-04-06 15:13:32 +02:00
logger.go Copy code from nvidia-container-runtime 2021-09-07 13:13:03 +02:00
main_test.go Move runtime config to internal package 2022-04-04 14:16:24 +02:00
main.go Make error logging less verbose by default 2022-04-04 14:16:26 +02:00
README.md Add basic README for nvidia-container-runtime 2022-04-04 14:16:26 +02:00
runtime_factory_test.go Read top-level config to propagate Root to experimental runtime 2022-04-04 14:16:25 +02:00
runtime_factory.go FIX: Factor out specModifier construction into function 2022-04-06 15:18:12 +02:00

The NVIDIA Container Runtime

The NVIDIA Container Runtime is a shim for OCI-compliant low-level runtimes such as runc. When a create command is detected, the incoming OCI runtime specification is modified in place and the command is forwarded to the low-level runtime.

Standard Mode

In the standard mode configuration, the NVIDIA Container Runtime adds a prestart hook to the incomming OCI specification that invokes the NVIDIA Container Runtime Hook for all containers created. This hook checks whether NVIDIA devices are requested and ensures GPU access is configured using the nvidia-container-cli from project libnvidia-container.

Experimental Mode

The NVIDIA Container Runtime can be configured in an experimental mode by setting the following options in the runtime's config.toml file:

[nvidia-container-runtime]
experimental = true

When this setting is enabled, the modifications made to the OCI specification are controlled by the nvidia-container-runtime.discover-mode option, with the following mode supported:

  • "legacy": This mode mirrors the behaviour of the standard mode, inserting the NVIDIA Container Runtime Hook as a prestart hook into the container's OCI specification.

Notes on using the docker CLI

The docker CLI supports the --gpus flag to select GPUs for inclusion in a container. Since specifying this flag inserts the same NVIDIA Container Runtime Hook into the OCI runtime specification. When experimental mode is activated, the NVIDIA Container Runtime detects the presence of the hook and raises an error. This requirement will be relaxed in the near future.