163 lines
3.7 KiB
Go
163 lines
3.7 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/posener/complete"
|
|
|
|
"github.com/hashicorp/nomad/api"
|
|
)
|
|
|
|
type NodePoolJobsCommand struct {
|
|
Meta
|
|
}
|
|
|
|
func (c *NodePoolJobsCommand) Name() string {
|
|
return "node pool jobs"
|
|
}
|
|
|
|
func (c *NodePoolJobsCommand) Synopsis() string {
|
|
return "Fetch a list of jobs in a node pool"
|
|
}
|
|
|
|
func (c *NodePoolJobsCommand) Help() string {
|
|
helpText := `
|
|
Usage: nomad node pool jobs <node-pool>
|
|
|
|
Node pool jobs is used to list jobs in a given node pool.
|
|
|
|
If ACLs are enabled, this command requires a token with the 'read' capability
|
|
in a 'node_pool' policy that matches the node pool being targeted. The results
|
|
will be filtered by the namespaces where the token has 'read-job' capability.
|
|
|
|
General Options:
|
|
|
|
` + generalOptionsUsage(usageOptsDefault) + `
|
|
|
|
Node Pool Jobs Options:
|
|
|
|
-filter
|
|
Specifies an expression used to filter jobs from the results.
|
|
The filter is applied to the job and not the node pool.
|
|
|
|
-json
|
|
Output the list in JSON format.
|
|
|
|
-page-token
|
|
Where to start pagination.
|
|
|
|
-per-page
|
|
How many results to show per page. If not specified, or set to 0, all
|
|
results are returned.
|
|
|
|
-t
|
|
Format and display jobs list using a Go template.
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
}
|
|
|
|
func (c *NodePoolJobsCommand) AutocompleteFlags() complete.Flags {
|
|
return mergeAutocompleteFlags(c.Meta.AutocompleteFlags(FlagSetClient),
|
|
complete.Flags{
|
|
"-filter": complete.PredictAnything,
|
|
"-json": complete.PredictNothing,
|
|
"-page-token": complete.PredictAnything,
|
|
"-per-page": complete.PredictAnything,
|
|
"-t": complete.PredictAnything,
|
|
})
|
|
}
|
|
|
|
func (c *NodePoolJobsCommand) AutocompleteArgs() complete.Predictor {
|
|
return nodePoolPredictor(c.Client, nil)
|
|
}
|
|
|
|
func (c *NodePoolJobsCommand) Run(args []string) int {
|
|
var json bool
|
|
var perPage int
|
|
var pageToken, filter, tmpl string
|
|
|
|
flags := c.Meta.FlagSet(c.Name(), FlagSetClient)
|
|
flags.Usage = func() { c.Ui.Output(c.Help()) }
|
|
flags.BoolVar(&json, "json", false, "")
|
|
flags.StringVar(&filter, "filter", "", "")
|
|
flags.StringVar(&pageToken, "page-token", "", "")
|
|
flags.IntVar(&perPage, "per-page", 0, "")
|
|
flags.StringVar(&tmpl, "t", "", "")
|
|
|
|
if err := flags.Parse(args); err != nil {
|
|
return 1
|
|
}
|
|
|
|
// Check that we only have one argument.
|
|
args = flags.Args()
|
|
if len(args) != 1 {
|
|
c.Ui.Error("This command takes one argument: <node-pool>")
|
|
c.Ui.Error(commandErrorText(c))
|
|
return 1
|
|
}
|
|
|
|
// Lookup node pool by prefix.
|
|
client, err := c.Meta.Client()
|
|
if err != nil {
|
|
c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
|
|
return 1
|
|
}
|
|
|
|
pool, possible, err := nodePoolByPrefix(client, args[0])
|
|
if err != nil {
|
|
c.Ui.Error(fmt.Sprintf("Error retrieving node pool: %s", err))
|
|
return 1
|
|
}
|
|
if len(possible) != 0 {
|
|
c.Ui.Error(fmt.Sprintf(
|
|
"Prefix matched multiple node pools\n\n%s", formatNodePoolList(possible)))
|
|
return 1
|
|
}
|
|
|
|
opts := &api.QueryOptions{
|
|
Filter: filter,
|
|
PerPage: int32(perPage),
|
|
NextToken: pageToken,
|
|
}
|
|
|
|
jobs, qm, err := client.NodePools().ListJobs(pool.Name, opts)
|
|
if err != nil {
|
|
c.Ui.Error(fmt.Sprintf("Error querying jobs: %s", err))
|
|
return 1
|
|
}
|
|
|
|
if len(jobs) == 0 {
|
|
c.Ui.Output("No jobs")
|
|
return 0
|
|
}
|
|
|
|
// Format output if requested.
|
|
if json || tmpl != "" {
|
|
out, err := Format(json, tmpl, jobs)
|
|
if err != nil {
|
|
c.Ui.Error(err.Error())
|
|
return 1
|
|
}
|
|
|
|
c.Ui.Output(out)
|
|
return 0
|
|
}
|
|
|
|
c.Ui.Output(createStatusListOutput(jobs, c.allNamespaces()))
|
|
|
|
if qm.NextToken != "" {
|
|
c.Ui.Output(fmt.Sprintf(`
|
|
Results have been paginated. To get the next page run:
|
|
|
|
%s -page-token %s`, argsWithoutPageToken(os.Args), qm.NextToken))
|
|
}
|
|
|
|
return 0
|
|
}
|