From 8f4438b86961d15b5b4dff3227203f37be588ba7 Mon Sep 17 00:00:00 2001 From: Joe Julian Date: Fri, 9 Mar 2018 10:09:39 -0800 Subject: [PATCH] Add missing container-runtime "remote" option Add the "remote" option to the auto-generated documentation for the `--container-runtime` flag. Fixes #60992 --- pkg/kubelet/config/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/config/flags.go b/pkg/kubelet/config/flags.go index f9bde6a6f70..19d595041cb 100644 --- a/pkg/kubelet/config/flags.go +++ b/pkg/kubelet/config/flags.go @@ -81,7 +81,7 @@ type ContainerRuntimeOptions struct { func (s *ContainerRuntimeOptions) AddFlags(fs *pflag.FlagSet) { // General settings. - fs.StringVar(&s.ContainerRuntime, "container-runtime", s.ContainerRuntime, "The container runtime to use. Possible values: 'docker', 'rkt'.") + fs.StringVar(&s.ContainerRuntime, "container-runtime", s.ContainerRuntime, "The container runtime to use. Possible values: 'docker', 'remote', 'rkt (deprecated)'.") fs.StringVar(&s.RuntimeCgroups, "runtime-cgroups", s.RuntimeCgroups, "Optional absolute name of cgroups to create and run the runtime in.") // Docker-specific settings.