-
Notifications
You must be signed in to change notification settings - Fork 787
/
stop.go
51 lines (42 loc) · 932 Bytes
/
stop.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
package cmd
import (
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
)
// Stop contains the command line options
type Stop struct {
*CommonOptions
}
var (
stopLong = templates.LongDesc(`
Stops a process such as a Jenkins pipeline.
`)
stopExample = templates.Examples(`
# Stop a pipeline
jx stop pipeline foo
`)
)
// NewCmdStop creates the command object
func NewCmdStop(commonOpts *CommonOptions) *cobra.Command {
options := &Stop{
commonOpts,
}
cmd := &cobra.Command{
Use: "stop TYPE [flags]",
Short: "Stops a process such as a pipeline",
Long: stopLong,
Example: stopExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.AddCommand(NewCmdStopPipeline(commonOpts))
return cmd
}
// Run implements this command
func (o *Stop) Run() error {
return o.Cmd.Help()
}