forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.go
87 lines (78 loc) · 1.97 KB
/
uninstall.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
package cmd
import (
"io"
"github.com/spf13/cobra"
"fmt"
"github.com/jenkins-x/jx/pkg/jx/cmd/log"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
cmdutil "github.com/jenkins-x/jx/pkg/jx/cmd/util"
"github.com/jenkins-x/jx/pkg/kube"
"gopkg.in/AlecAivazis/survey.v1"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
type UninstallOptions struct {
CommonOptions
}
var (
uninstall_long = templates.LongDesc(`
Uninstalls the Jenkins X platform from a kubernetes cluster`)
uninstall_example = templates.Examples(`
# Uninstall the Jenkins X platform
jx uninstall`)
)
func NewCmdUninstall(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &UninstallOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "uninstall",
Short: "Uninstall the Jenkins X platform",
Long: uninstall_long,
Example: uninstall_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
cmdutil.CheckErr(err)
},
}
return cmd
}
func (o *UninstallOptions) Run() error {
config, _, err := kube.LoadConfig()
if err != nil {
return err
}
jxClient, _, err := o.Factory.CreateJXClient()
if err != nil {
return err
}
server := kube.CurrentServer(config)
namespace := kube.CurrentNamespace(config)
confirm := &survey.Confirm{
Message: fmt.Sprintf("Are you sure you wish to remove the Jenkins X platform from the '%s' namespace on cluster '%s'? :", namespace, server),
Default: false,
}
flag := false
err = survey.AskOne(confirm, &flag, nil)
if err != nil {
return err
}
if !flag {
return nil
}
err = o.runCommand("helm", "delete", "--purge", "jenkins-x")
if err != nil {
return err
}
err = jxClient.JenkinsV1().Environments(namespace).DeleteCollection(&meta_v1.DeleteOptions{}, meta_v1.ListOptions{})
if err != nil {
return err
}
log.Success("Jenkins X has been successfully uninstalled ")
return nil
}