open-nomad/command/job_revert.go

114 lines
2.6 KiB
Go
Raw Normal View History

2017-06-30 03:28:52 +00:00
package command
import (
"fmt"
"strings"
)
type JobRevertCommand struct {
Meta
}
func (c *JobRevertCommand) Help() string {
helpText := `
2017-06-30 03:42:53 +00:00
Usage: nomad job revert [options] <job> <version>
2017-06-30 03:28:52 +00:00
Revert is used to revert a job to a prior version of the job. The available
versions to revert to can be found using "nomad job history" command.
General Options:
` + generalOptionsUsage() + `
2017-06-30 03:42:53 +00:00
Revert Options:
2017-06-30 03:28:52 +00:00
-detach
2017-06-30 21:27:13 +00:00
Return immediately instead of entering monitor mode. After job revert,
2017-06-30 03:28:52 +00:00
the evaluation ID will be printed to the screen, which can be used to
examine the evaluation using the eval-status command.
-verbose
Display full information.
`
return strings.TrimSpace(helpText)
}
func (c *JobRevertCommand) Synopsis() string {
return "Revert to a prior version of the job"
}
func (c *JobRevertCommand) Run(args []string) int {
var detach, verbose bool
2017-06-30 03:42:53 +00:00
flags := c.Meta.FlagSet("job revert", FlagSetClient)
2017-06-30 03:28:52 +00:00
flags.Usage = func() { c.Ui.Output(c.Help()) }
flags.BoolVar(&detach, "detach", false, "")
flags.BoolVar(&verbose, "verbose", false, "")
if err := flags.Parse(args); err != nil {
return 1
}
// Truncate the id unless full length is requested
length := shortId
if verbose {
length = fullId
}
2017-06-30 03:42:53 +00:00
// Check that we got two args
2017-06-30 03:28:52 +00:00
args = flags.Args()
2017-06-30 03:42:53 +00:00
if l := len(args); l != 2 {
2017-06-30 03:28:52 +00:00
c.Ui.Error(c.Help())
return 1
}
// Get the HTTP client
client, err := c.Meta.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
return 1
}
jobID := args[0]
2017-06-30 03:42:53 +00:00
revertVersion, ok, err := parseVersion(args[1])
if !ok {
c.Ui.Error("The job version to revert to must be specified using the -job-version flag")
return 1
}
if err != nil {
c.Ui.Error(fmt.Sprintf("Failed to parse job-version flag: %v", err))
return 1
}
2017-06-30 03:28:52 +00:00
// Check if the job exists
jobs, _, err := client.Jobs().PrefixList(jobID)
if err != nil {
c.Ui.Error(fmt.Sprintf("Error listing jobs: %s", err))
return 1
}
if len(jobs) == 0 {
c.Ui.Error(fmt.Sprintf("No job(s) with prefix or id %q found", jobID))
return 1
}
if len(jobs) > 1 && strings.TrimSpace(jobID) != jobs[0].ID {
c.Ui.Error(fmt.Sprintf("Prefix matched multiple jobs\n\n%s", createStatusListOutput(jobs)))
return 1
2017-06-30 03:28:52 +00:00
}
// Prefix lookup matched a single job
resp, _, err := client.Jobs().Revert(jobs[0].ID, revertVersion, nil, nil)
if err != nil {
c.Ui.Error(fmt.Sprintf("Error retrieving job versions: %s", err))
return 1
}
// Nothing to do
evalCreated := resp.EvalID != ""
if detach || !evalCreated {
return 0
}
mon := newMonitor(c.Ui, client, length)
return mon.monitor(resp.EvalID, false)
}