-
Notifications
You must be signed in to change notification settings - Fork 787
/
delete_addon_knative_build.go
90 lines (78 loc) · 2.32 KB
/
delete_addon_knative_build.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
80
81
82
83
84
85
86
87
88
89
90
package cmd
import (
"github.com/jenkins-x/jx/pkg/kube"
"github.com/sirupsen/logrus"
"gopkg.in/AlecAivazis/survey.v1"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
var (
deleteAddonKnativeBuildLong = templates.LongDesc(`
Deletes the Knative Build addon
`)
deleteAddonKnativeBuildExample = templates.Examples(`
# Deletes the Knative Build addon
jx delete addon knative-build
`)
)
// DeleteAddonGiteaOptions the options for the create spring command
type DeleteKnativeBuildOptions struct {
DeleteAddonOptions
ReleaseName string
}
// NewCmdDeleteAddonKnativeBuild defines the command
func NewCmdDeleteAddonKnativeBuild(commonOpts *CommonOptions) *cobra.Command {
options := &DeleteKnativeBuildOptions{
DeleteAddonOptions: DeleteAddonOptions{
CommonOptions: commonOpts,
},
}
cmd := &cobra.Command{
Use: "knative-build",
Short: "Deletes the Knative Build app for Kubernetes addon",
Long: deleteAddonKnativeBuildLong,
Example: deleteAddonKnativeBuildExample,
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", kube.DefaultKnativeBuildReleaseName, "The chart release name")
options.addFlags(cmd)
return cmd
}
// Run implements the command
func (o *DeleteKnativeBuildOptions) Run() error {
if o.ReleaseName == "" {
return util.MissingOption(optionRelease)
}
apisClient, err := o.ApiExtensionsClient()
if err != nil {
return err
}
knativeCRDs := []string{"clusterbuildtemplates.build.knative.dev", "images.caching.internal.knative.dev", "buildtemplates.build.knative.dev", "builds.build.knative.dev"}
for _, crd := range knativeCRDs {
err = apisClient.ApiextensionsV1beta1().CustomResourceDefinitions().Delete(crd, &metav1.DeleteOptions{})
if err != nil {
logrus.Warnf("cannot delete CRD %s: %v", crd, err)
confirm := &survey.Confirm{
Message: "There are warnings, do you wish to continue?",
Default: false,
}
flag := true
err = survey.AskOne(confirm, &flag, nil)
if err != nil || flag == false {
return nil
}
}
}
err = o.deleteChart(o.ReleaseName, o.Purge)
if err != nil {
return err
}
return nil
}