open-nomad/command/operator_scheduler.go
James Rasell 181b247384
core: allow pausing and un-pausing of leader broker routine (#13045)
* core: allow pause/un-pause of eval broker on region leader.

* agent: add ability to pause eval broker via scheduler config.

* cli: add operator scheduler commands to interact with config.

* api: add ability to pause eval broker via scheduler config

* e2e: add operator scheduler test for eval broker pause.

* docs: include new opertor scheduler CLI and pause eval API info.
2022-07-06 16:13:48 +02:00

43 lines
1 KiB
Go

package command
import (
"strings"
"github.com/mitchellh/cli"
)
// Ensure OperatorSchedulerCommand satisfies the cli.Command interface.
var _ cli.Command = &OperatorSchedulerCommand{}
type OperatorSchedulerCommand struct {
Meta
}
func (o *OperatorSchedulerCommand) Help() string {
helpText := `
Usage: nomad operator scheduler <subcommand> [options]
This command groups subcommands for interacting with Nomad's scheduler
subsystem.
Get the scheduler configuration:
$ nomad operator scheduler get-config
Set the scheduler to use the spread algorithm:
$ nomad operator scheduler set-config -scheduler-algorithm=spread
Please see the individual subcommand help for detailed usage information.
`
return strings.TrimSpace(helpText)
}
func (o *OperatorSchedulerCommand) Synopsis() string {
return "Provides access to the scheduler configuration"
}
func (o *OperatorSchedulerCommand) Name() string { return "operator scheduler" }
func (o *OperatorSchedulerCommand) Run(_ []string) int { return cli.RunResultHelp }