-
Notifications
You must be signed in to change notification settings - Fork 787
/
delete_addon_gitea.go
79 lines (69 loc) · 1.78 KB
/
delete_addon_gitea.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package cmd
import (
"io"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
)
var (
delete_addon_gitea_long = templates.LongDesc(`
Deletes the Gitea addon
`)
delete_addon_gitea_example = templates.Examples(`
# Deletes the Gitea addon
jx delete addon gitea
`)
)
// DeleteAddonGiteaOptions the options for the create spring command
type DeleteAddonGiteaOptions struct {
DeleteAddonOptions
ReleaseName string
}
// NewCmdDeleteAddonGitea defines the command
func NewCmdDeleteAddonGitea(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &DeleteAddonGiteaOptions{
DeleteAddonOptions: DeleteAddonOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "gitea",
Short: "Deletes the Gitea addon",
Long: delete_addon_gitea_long,
Example: delete_addon_gitea_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.ReleaseName, optionRelease, "r", "gitea", "The chart release name")
options.addFlags(cmd)
return cmd
}
// Run implements the command
func (o *DeleteAddonGiteaOptions) Run() error {
if o.ReleaseName == "" {
return util.MissingOption(optionRelease)
}
err := o.deleteChart(o.ReleaseName, o.Purge)
if err != nil {
return err
}
return o.deleteGitServer()
}
func (o *DeleteAddonGiteaOptions) deleteGitServer() error {
options := &DeleteGitServerOptions{
CommonOptions: o.CommonOptions,
IgnoreMissingServer: true,
}
options.Args = []string{"gitea"}
return options.Run()
}