open-nomad/main.go

58 lines
1.3 KiB
Go
Raw Normal View History

2015-06-01 11:46:21 +00:00
package main
import (
"fmt"
"os"
"github.com/mitchellh/cli"
2017-02-09 00:07:33 +00:00
"github.com/sean-/seed"
2015-06-01 11:46:21 +00:00
)
2016-05-03 07:28:23 +00:00
func init() {
2017-02-09 00:07:33 +00:00
seed.Init()
2016-05-03 07:28:23 +00:00
}
2015-06-01 11:46:21 +00:00
func main() {
os.Exit(Run(os.Args[1:]))
}
func Run(args []string) int {
return RunCustom(args, Commands(nil))
}
func RunCustom(args []string, commands map[string]cli.CommandFactory) int {
// Build the commands to include in the help now.
commandsInclude := make([]string, 0, len(commands))
for k, _ := range commands {
switch k {
2017-06-30 17:59:19 +00:00
case "check":
2017-06-30 23:22:06 +00:00
case "deployment list", "deployment status", "deployment pause",
"deployment resume", "deployment fail", "deployment promote":
2016-02-05 18:51:29 +00:00
case "executor":
2016-03-21 00:05:46 +00:00
case "fs ls", "fs cat", "fs stat":
2017-07-19 22:39:32 +00:00
case "job deployments", "job dispatch", "job history", "job promote", "job revert":
2017-06-30 17:59:19 +00:00
case "operator raft", "operator raft list-peers", "operator raft remove-peer":
case "syslog":
default:
commandsInclude = append(commandsInclude, k)
}
}
2015-06-01 11:46:21 +00:00
cli := &cli.CLI{
Name: "nomad",
Version: PrettyVersion(GetVersionParts()),
Args: args,
Commands: commands,
Autocomplete: true,
HelpFunc: cli.FilteredHelpFunc(commandsInclude, cli.BasicHelpFunc("nomad")),
2015-06-01 11:46:21 +00:00
}
exitCode, err := cli.Run()
if err != nil {
fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
return 1
}
2015-10-28 02:39:19 +00:00
2015-06-01 11:46:21 +00:00
return exitCode
}