From 89b99ff7867550fada54e610f172a267060f8e80 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Thu, 13 Mar 2025 16:20:37 +0200 Subject: [PATCH] Remove deprecated --runtime-args from nvidia-ctk-installer The GPU Operator no longer sets the RUNTIME_ARGS environment variable to control the runtime and instead sets general environment variables. This change removes support for setting RUNTIME_ARGS in the CLI as these settings have no effect. Signed-off-by: Evan Lezar --- cmd/nvidia-ctk-installer/main.go | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/cmd/nvidia-ctk-installer/main.go b/cmd/nvidia-ctk-installer/main.go index b89eb81e..26ace1ed 100644 --- a/cmd/nvidia-ctk-installer/main.go +++ b/cmd/nvidia-ctk-installer/main.go @@ -22,8 +22,7 @@ const ( defaultPidFile = "/run/nvidia/toolkit/" + toolkitPidFilename toolkitSubDir = "toolkit" - defaultRuntime = "docker" - defaultRuntimeArgs = "" + defaultRuntime = "docker" ) var availableRuntimes = map[string]struct{}{"docker": {}, "crio": {}, "containerd": {}} @@ -34,12 +33,11 @@ var signalReceived = make(chan bool, 1) // options stores the command line arguments type options struct { - noDaemon bool - runtime string - runtimeArgs string - root string - pidFile string - sourceRoot string + noDaemon bool + runtime string + root string + pidFile string + sourceRoot string toolkitOptions toolkit.Options runtimeOptions runtime.Options @@ -124,15 +122,6 @@ func (a app) build() *cli.App { Destination: &options.runtime, EnvVars: []string{"RUNTIME"}, }, - // TODO: Remove runtime-args - &cli.StringFlag{ - Name: "runtime-args", - Aliases: []string{"u"}, - Usage: "arguments to pass to 'docker', 'crio', or 'containerd' setup command", - Value: defaultRuntimeArgs, - Destination: &options.runtimeArgs, - EnvVars: []string{"RUNTIME_ARGS"}, - }, &cli.StringFlag{ Name: "root", Value: a.defaultRoot,