mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
67 lines
2.5 KiB
Go
67 lines
2.5 KiB
Go
|
// +build linux
|
||
|
|
||
|
package containerd
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"io/fs"
|
||
|
"path/filepath"
|
||
|
|
||
|
"github.com/rancher/k3s/pkg/agent/templates"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
// findNvidiaContainerRuntimes returns a list of nvidia container runtimes that
|
||
|
// are available on the system. It checks install locations used by the nvidia
|
||
|
// gpu operator and by system package managers. The gpu operator installation
|
||
|
// takes precedence over the system package manager installation.
|
||
|
// The given fs.FS should represent the filesystem root directory to search in.
|
||
|
func findNvidiaContainerRuntimes(root fs.FS) map[string]templates.ContainerdRuntimeConfig {
|
||
|
// Check these locations in order. The GPU operator's installation should
|
||
|
// take precedence over the package manager's installation.
|
||
|
locationsToCheck := []string{
|
||
|
"usr/local/nvidia/toolkit", // Path when installing via GPU Operator
|
||
|
"usr/bin", // Path when installing via package manager
|
||
|
}
|
||
|
|
||
|
// Fill in the binary location with just the name of the binary,
|
||
|
// and check against each of the possible locations. If a match is found,
|
||
|
// set the location to the full path.
|
||
|
potentialRuntimes := map[string]templates.ContainerdRuntimeConfig{
|
||
|
"nvidia": {
|
||
|
RuntimeType: "io.containerd.runc.v2",
|
||
|
BinaryName: "nvidia-container-runtime",
|
||
|
},
|
||
|
"nvidia-experimental": {
|
||
|
RuntimeType: "io.containerd.runc.v2",
|
||
|
BinaryName: "nvidia-container-runtime-experimental",
|
||
|
},
|
||
|
}
|
||
|
foundRuntimes := map[string]templates.ContainerdRuntimeConfig{}
|
||
|
RUNTIME:
|
||
|
for runtimeName, runtimeConfig := range potentialRuntimes {
|
||
|
for _, location := range locationsToCheck {
|
||
|
binaryPath := filepath.Join(location, runtimeConfig.BinaryName)
|
||
|
logrus.Debugf("Searching for %s container runtime at /%s", runtimeName, binaryPath)
|
||
|
if info, err := fs.Stat(root, binaryPath); err == nil {
|
||
|
if info.IsDir() {
|
||
|
logrus.Debugf("Found %s container runtime at /%s, but it is a directory. Skipping.", runtimeName, binaryPath)
|
||
|
continue
|
||
|
}
|
||
|
runtimeConfig.BinaryName = filepath.Join("/", binaryPath)
|
||
|
logrus.Infof("Found %s container runtime at %s", runtimeName, runtimeConfig.BinaryName)
|
||
|
foundRuntimes[runtimeName] = runtimeConfig
|
||
|
// Skip to the next runtime to enforce precedence.
|
||
|
continue RUNTIME
|
||
|
} else {
|
||
|
if errors.Is(err, fs.ErrNotExist) {
|
||
|
logrus.Debugf("%s container runtime not found at /%s", runtimeName, binaryPath)
|
||
|
} else {
|
||
|
logrus.Errorf("Error searching for %s container runtime at /%s: %v", runtimeName, binaryPath, err)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return foundRuntimes
|
||
|
}
|