-
Notifications
You must be signed in to change notification settings - Fork 787
/
get_addon.go
104 lines (88 loc) · 2.08 KB
/
get_addon.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package cmd
import (
"io"
"github.com/jenkins-x/jx/pkg/addon"
"github.com/jenkins-x/jx/pkg/log"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/util"
)
// GetAddonOptions the command line options
type GetAddonOptions struct {
GetOptions
}
var (
get_addon_long = templates.LongDesc(`
Display the available addons
`)
get_addon_example = templates.Examples(`
# List all the possible addons
jx get addon
`)
)
// NewCmdGetAddon creates the command
func NewCmdGetAddon(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &GetAddonOptions{
GetOptions: GetOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "addons [flags]",
Short: "Lists the addons",
Long: get_addon_long,
Example: get_addon_example,
Aliases: []string{"addon", "add-on"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
return cmd
}
// Run implements this command
func (o *GetAddonOptions) Run() error {
addonConfig, err := addon.LoadAddonsConfig()
if err != nil {
return err
}
addonEnabled := map[string]bool{}
for _, addon := range addonConfig.Addons {
if addon.Enabled {
addonEnabled[addon.Name] = true
}
}
_, ns, err := o.KubeClient()
if err != nil {
return err
}
statusMap, err := o.Helm().StatusReleases(ns)
if err != nil {
log.Warnf("Failed to find Helm installs: %s\n", err)
}
charts := kube.AddonCharts
table := o.CreateTable()
table.AddRow("NAME", "CHART", "ENABLED", "STATUS", "VERSION")
keys := util.SortedMapKeys(charts)
for _, k := range keys {
chart := charts[k]
status := statusMap[k].Status
version := statusMap[k].Version
enableText := ""
if addonEnabled[k] {
enableText = "yes"
}
table.AddRow(k, chart, enableText, status, version)
}
table.Render()
return nil
}