Commit 8f4438b8 authored by Joe Julian's avatar Joe Julian

Add missing container-runtime "remote" option

Add the "remote" option to the auto-generated documentation for the `--container-runtime` flag. Fixes #60992
parent 7c9293e1
...@@ -81,7 +81,7 @@ type ContainerRuntimeOptions struct { ...@@ -81,7 +81,7 @@ type ContainerRuntimeOptions struct {
func (s *ContainerRuntimeOptions) AddFlags(fs *pflag.FlagSet) { func (s *ContainerRuntimeOptions) AddFlags(fs *pflag.FlagSet) {
// General settings. // 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.") fs.StringVar(&s.RuntimeCgroups, "runtime-cgroups", s.RuntimeCgroups, "Optional absolute name of cgroups to create and run the runtime in.")
// Docker-specific settings. // Docker-specific settings.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment