Add missing container-runtime "remote" option

Add the "remote" option to the auto-generated documentation for the
`--container-runtime` flag.

Fixes #60992
This commit is contained in:
Joe Julian 2018-03-09 10:09:39 -08:00
parent 7c9293e1c3
commit 8f4438b869

View File

@ -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.