2015-09-25 01:29:46 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
2017-02-13 23:18:17 +00:00
|
|
|
|
2021-04-03 07:50:23 +00:00
|
|
|
"github.com/hashicorp/go-multierror"
|
2017-03-03 23:00:39 +00:00
|
|
|
"github.com/hashicorp/nomad/api"
|
|
|
|
"github.com/hashicorp/nomad/command/agent"
|
2020-12-14 16:07:27 +00:00
|
|
|
flaghelper "github.com/hashicorp/nomad/helper/flags"
|
2017-07-07 02:08:51 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2017-07-18 20:18:17 +00:00
|
|
|
"github.com/posener/complete"
|
2015-09-25 01:29:46 +00:00
|
|
|
)
|
|
|
|
|
2018-03-21 00:37:28 +00:00
|
|
|
type JobValidateCommand struct {
|
2015-09-25 01:29:46 +00:00
|
|
|
Meta
|
2016-08-16 10:49:14 +00:00
|
|
|
JobGetter
|
2015-09-25 01:29:46 +00:00
|
|
|
}
|
|
|
|
|
2018-03-21 00:37:28 +00:00
|
|
|
func (c *JobValidateCommand) Help() string {
|
2015-09-25 01:29:46 +00:00
|
|
|
helpText := `
|
2018-03-21 00:37:28 +00:00
|
|
|
Usage: nomad job validate [options] <path>
|
2018-03-21 01:28:14 +00:00
|
|
|
Alias: nomad validate
|
2015-09-25 01:29:46 +00:00
|
|
|
|
2016-07-01 18:51:53 +00:00
|
|
|
Checks if a given HCL job file has a valid specification. This can be used to
|
|
|
|
check for any syntax errors or validation problems with a job.
|
2015-09-25 01:29:46 +00:00
|
|
|
|
2016-07-22 20:48:14 +00:00
|
|
|
If the supplied path is "-", the jobfile is read from stdin. Otherwise
|
2016-08-11 13:34:31 +00:00
|
|
|
it is read from the file at the supplied path or downloaded and
|
|
|
|
read from URL specified.
|
2020-10-21 14:22:08 +00:00
|
|
|
|
2020-11-19 21:38:08 +00:00
|
|
|
When ACLs are enabled, this command requires a token with the 'read-job'
|
|
|
|
capability for the job's namespace.
|
|
|
|
|
2020-10-21 14:22:08 +00:00
|
|
|
Validate Options:
|
|
|
|
|
|
|
|
-hcl1
|
|
|
|
Parses the job file as HCLv1.
|
2020-11-09 20:02:58 +00:00
|
|
|
|
|
|
|
-var 'key=value'
|
|
|
|
Variable for template, can be used multiple times.
|
|
|
|
|
|
|
|
-var-file=path
|
|
|
|
Path to HCL2 file containing user variables.
|
|
|
|
|
2015-09-25 01:29:46 +00:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
2018-03-21 00:37:28 +00:00
|
|
|
func (c *JobValidateCommand) Synopsis() string {
|
2015-09-25 01:29:46 +00:00
|
|
|
return "Checks if a given job specification is valid"
|
|
|
|
}
|
|
|
|
|
2018-03-21 00:37:28 +00:00
|
|
|
func (c *JobValidateCommand) AutocompleteFlags() complete.Flags {
|
2020-10-21 14:22:08 +00:00
|
|
|
return complete.Flags{
|
2020-11-09 20:02:58 +00:00
|
|
|
"-hcl1": complete.PredictNothing,
|
|
|
|
"-var": complete.PredictAnything,
|
|
|
|
"-var-file": complete.PredictFiles("*.var"),
|
2020-10-21 14:22:08 +00:00
|
|
|
}
|
2017-07-18 20:18:17 +00:00
|
|
|
}
|
|
|
|
|
2018-03-21 00:37:28 +00:00
|
|
|
func (c *JobValidateCommand) AutocompleteArgs() complete.Predictor {
|
2017-07-18 20:18:17 +00:00
|
|
|
return complete.PredictOr(complete.PredictFiles("*.nomad"), complete.PredictFiles("*.hcl"))
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:02:11 +00:00
|
|
|
func (c *JobValidateCommand) Name() string { return "job validate" }
|
|
|
|
|
2018-03-21 00:37:28 +00:00
|
|
|
func (c *JobValidateCommand) Run(args []string) int {
|
2020-12-11 03:26:10 +00:00
|
|
|
var varArgs, varFiles flaghelper.StringFlag
|
2020-10-21 14:22:08 +00:00
|
|
|
|
2020-12-11 03:26:10 +00:00
|
|
|
flagSet := c.Meta.FlagSet(c.Name(), FlagSetNone)
|
|
|
|
flagSet.Usage = func() { c.Ui.Output(c.Help()) }
|
|
|
|
flagSet.BoolVar(&c.JobGetter.hcl1, "hcl1", false, "")
|
|
|
|
flagSet.Var(&varArgs, "var", "")
|
|
|
|
flagSet.Var(&varFiles, "var-file", "")
|
2020-10-21 14:22:08 +00:00
|
|
|
|
2020-12-11 03:26:10 +00:00
|
|
|
if err := flagSet.Parse(args); err != nil {
|
2015-09-25 01:29:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we got exactly one node
|
2020-12-11 03:26:10 +00:00
|
|
|
args = flagSet.Args()
|
2015-09-25 01:29:46 +00:00
|
|
|
if len(args) != 1 {
|
2018-04-18 17:55:51 +00:00
|
|
|
c.Ui.Error("This command takes one argument: <path>")
|
2018-04-18 16:02:11 +00:00
|
|
|
c.Ui.Error(commandErrorText(c))
|
2015-09-25 01:29:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-08-10 14:30:19 +00:00
|
|
|
// Get Job struct from Jobfile
|
2020-11-09 20:02:58 +00:00
|
|
|
job, err := c.JobGetter.ApiJobWithArgs(args[0], varArgs, varFiles)
|
2015-09-25 01:29:46 +00:00
|
|
|
if err != nil {
|
2016-08-10 14:30:19 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error getting job struct: %s", err))
|
2015-09-25 01:29:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-06 19:48:28 +00:00
|
|
|
// Get the HTTP client
|
|
|
|
client, err := c.Meta.Client()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
|
|
|
|
return 255
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force the region to be that of the job.
|
|
|
|
if r := job.Region; r != nil {
|
|
|
|
client.SetRegion(*r)
|
|
|
|
}
|
2015-12-18 20:17:50 +00:00
|
|
|
|
2015-09-25 01:29:46 +00:00
|
|
|
// Check that the job is valid
|
2017-02-13 23:18:17 +00:00
|
|
|
jr, _, err := client.Jobs().Validate(job, nil)
|
2017-03-03 23:00:39 +00:00
|
|
|
if err != nil {
|
|
|
|
jr, err = c.validateLocal(job)
|
|
|
|
}
|
2017-02-13 23:18:17 +00:00
|
|
|
if err != nil {
|
2015-09-25 01:29:46 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error validating job: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2017-03-03 23:00:39 +00:00
|
|
|
|
2017-02-13 23:18:17 +00:00
|
|
|
if jr != nil && !jr.DriverConfigValidated {
|
2017-03-03 23:00:39 +00:00
|
|
|
c.Ui.Output(
|
|
|
|
c.Colorize().Color("[bold][yellow]Driver configuration not validated since connection to Nomad agent couldn't be established.[reset]\n"))
|
2017-02-13 23:18:17 +00:00
|
|
|
}
|
|
|
|
|
2017-03-03 23:00:39 +00:00
|
|
|
if jr != nil && jr.Error != "" {
|
|
|
|
c.Ui.Error(
|
|
|
|
c.Colorize().Color("[bold][red]Job validation errors:[reset]"))
|
|
|
|
c.Ui.Error(jr.Error)
|
2017-02-13 23:18:17 +00:00
|
|
|
return 1
|
|
|
|
}
|
2015-09-25 01:29:46 +00:00
|
|
|
|
2017-05-10 03:52:47 +00:00
|
|
|
// Print any warnings if there are any
|
|
|
|
if jr.Warnings != "" {
|
|
|
|
c.Ui.Output(
|
|
|
|
c.Colorize().Color(fmt.Sprintf("[bold][yellow]Job Warnings:\n%s[reset]\n", jr.Warnings)))
|
|
|
|
}
|
|
|
|
|
2015-09-25 01:29:46 +00:00
|
|
|
// Done!
|
2017-03-03 23:00:39 +00:00
|
|
|
c.Ui.Output(
|
|
|
|
c.Colorize().Color("[bold][green]Job validation successful[reset]"))
|
2015-09-25 01:29:46 +00:00
|
|
|
return 0
|
|
|
|
}
|
2017-03-03 23:00:39 +00:00
|
|
|
|
|
|
|
// validateLocal validates without talking to a Nomad agent
|
2018-03-21 00:37:28 +00:00
|
|
|
func (c *JobValidateCommand) validateLocal(aj *api.Job) (*api.JobValidateResponse, error) {
|
2017-03-03 23:00:39 +00:00
|
|
|
var out api.JobValidateResponse
|
|
|
|
|
|
|
|
job := agent.ApiJobToStructJob(aj)
|
2021-01-14 20:46:35 +00:00
|
|
|
job.Canonicalize()
|
2017-03-03 23:00:39 +00:00
|
|
|
|
|
|
|
if vErr := job.Validate(); vErr != nil {
|
|
|
|
if merr, ok := vErr.(*multierror.Error); ok {
|
|
|
|
for _, err := range merr.Errors {
|
|
|
|
out.ValidationErrors = append(out.ValidationErrors, err.Error())
|
|
|
|
}
|
|
|
|
out.Error = merr.Error()
|
|
|
|
} else {
|
|
|
|
out.ValidationErrors = append(out.ValidationErrors, vErr.Error())
|
|
|
|
out.Error = vErr.Error()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 20:46:35 +00:00
|
|
|
out.Warnings = structs.MergeMultierrorWarnings(job.Warnings())
|
2017-03-03 23:00:39 +00:00
|
|
|
return &out, nil
|
|
|
|
}
|