open-nomad/command/eval.go

41 lines
893 B
Go
Raw Normal View History

2018-03-21 00:37:28 +00:00
package command
2018-03-21 21:04:54 +00:00
import (
"strings"
"github.com/mitchellh/cli"
)
2018-03-21 00:37:28 +00:00
type EvalCommand struct {
Meta
}
func (f *EvalCommand) Help() string {
2018-03-21 21:04:54 +00:00
helpText := `
Usage: nomad eval <subcommand> [options] [args]
This command groups subcommands for interacting with evaluations. Evaluations
are used to trigger a scheduling event. As such, evaluations are an internal
detail but can be useful for debugging placement failures when the cluster
does not have the resources to run a given job.
Examine an evaluations status:
$ nomad eval status <eval-id>
Please see the individual subcommand help for detailed usage information.
`
return strings.TrimSpace(helpText)
2018-03-21 00:37:28 +00:00
}
func (f *EvalCommand) Synopsis() string {
return "Interact with evaluations"
}
func (f *EvalCommand) Name() string { return "eval" }
2018-03-21 00:37:28 +00:00
func (f *EvalCommand) Run(args []string) int {
return cli.RunResultHelp
}