-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloudbees.go
102 lines (86 loc) · 2.62 KB
/
cloudbees.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
package cmd
import (
"fmt"
"io"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/util"
"github.com/pkg/browser"
)
type CloudBeesOptions struct {
CommonOptions
OnlyViewURL bool
}
var (
// TODO this won't work yet as the ingress can't handle fake paths
appendTeam = false
cdx_long = templates.LongDesc(`
Opens the CloudBees app for Kubernetes in a browser.
Which helps you visualise your CI/CD pipelines, apps, environments and teams.
For more information please see [https://www.cloudbees.com/blog/want-help-build-cloudbees-kubernetes-jenkins-x](https://www.cloudbees.com/blog/want-help-build-cloudbees-kubernetes-jenkins-x)
`)
cdx_example = templates.Examples(`
# Open the CDX dashboard in a browser
jx cloudbees
# Print the Jenkins X console URL but do not open a browser
jx console -u`)
)
func NewCmdCloudBees(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &CloudBeesOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "cloudbees",
Short: "Opens the CloudBees app for Kubernetes for visualising CI/CD and your environments",
Long: cdx_long,
Example: cdx_example,
Aliases: []string{"cloudbee", "cb", "cdx"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().BoolVarP(&options.OnlyViewURL, "url", "u", false, "Only displays and the URL and does not open the browser")
return cmd
}
func (o *CloudBeesOptions) Run() error {
client, ns, err := o.KubeClient()
if err != nil {
return err
}
url, err := kube.GetServiceURLFromName(client, kube.ServiceCloudBees, defaultCloudBeesNamespace)
if err != nil {
return fmt.Errorf("%s\n\nDid you install the CloudBees addon via: %s\n\nFor more information see: %s", err, util.ColorInfo("jx create addon cloudbees"), util.ColorInfo("https://www.cloudbees.com/blog/want-help-build-cloudbees-kubernetes-jenkins-x"))
}
if appendTeam {
devNs, _, err := kube.GetDevNamespace(client, ns)
if err != nil {
return err
}
if devNs != "" {
url = util.UrlJoin(url, "teams", devNs)
}
}
return o.OpenURL(url, "CloudBees")
}
func (o *CloudBeesOptions) Open(name string, label string) error {
url, err := o.findService(name)
if err != nil {
return err
}
return o.OpenURL(url, label)
}
func (o *CloudBeesOptions) OpenURL(url string, label string) error {
fmt.Fprintf(o.Out, "%s: %s\n", label, util.ColorInfo(url))
if !o.OnlyViewURL {
browser.OpenURL(url)
}
return nil
}