Merge pull request #5230 from hashicorp/dani/b-hide-docker_logger-command

cli: Hide `nomad docker_logger` from help output
This commit is contained in:
Danielle Tomlinson 2019-01-23 16:46:11 +01:00 committed by GitHub
commit 4f63925667
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import (
"text/tabwriter" "text/tabwriter"
"github.com/hashicorp/nomad/command" "github.com/hashicorp/nomad/command"
"github.com/hashicorp/nomad/drivers/docker/docklog"
"github.com/hashicorp/nomad/version" "github.com/hashicorp/nomad/version"
"github.com/mitchellh/cli" "github.com/mitchellh/cli"
"github.com/sean-/seed" "github.com/sean-/seed"
@ -36,6 +37,7 @@ var (
"server-join", "server-join",
"server-members", "server-members",
"syslog", "syslog",
docklog.PluginName,
} }
// aliases is the list of aliases we want users to be aware of. We hide // aliases is the list of aliases we want users to be aware of. We hide