-
Notifications
You must be signed in to change notification settings - Fork 787
/
step_scheduler.go
52 lines (45 loc) · 1.25 KB
/
step_scheduler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package scheduler
import (
"github.com/jenkins-x/jx/v2/pkg/cmd/helper"
"github.com/jenkins-x/jx/v2/pkg/cmd/opts"
"github.com/jenkins-x/jx/v2/pkg/cmd/opts/step"
"github.com/jenkins-x/jx/v2/pkg/cmd/templates"
"github.com/spf13/cobra"
)
// StepSchedulerOptions contains the command line flags
type StepSchedulerOptions struct {
step.StepOptions
}
var (
stepSchedulerLong = templates.LongDesc(`
This pipeline step command allows you to work with the scheduler. Sub commands include:
* jx step scheduler config apply
* jx step scheduler config generate
* jx step scheduler config create pr
`)
)
// NewCmdStepScheduler Steps a command object for the "step" command
func NewCmdStepScheduler(commonOpts *opts.CommonOptions) *cobra.Command {
options := &StepSchedulerOptions{
StepOptions: step.StepOptions{
CommonOptions: commonOpts,
},
}
cmd := &cobra.Command{
Use: "scheduler",
Short: "scheduler [command]",
Long: stepSchedulerLong,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
helper.CheckErr(err)
},
}
cmd.AddCommand(NewCmdStepSchedulerConfig(commonOpts))
return cmd
}
// Run implements this command
func (o *StepSchedulerOptions) Run() error {
return o.Cmd.Help()
}