-
Notifications
You must be signed in to change notification settings - Fork 787
/
create_addon_pipeline_events.go
228 lines (194 loc) · 6.51 KB
/
create_addon_pipeline_events.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package cmd
import (
"io"
"strings"
"time"
"github.com/jenkins-x/jx/pkg/kube/services"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"fmt"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
)
const (
defaultPEName = "pipeline-events"
defaultPENamespace = "pipeline-events"
defaultPEReleaseName = "jx-pipeline-events"
defaultPEVersion = "0.0.11"
kibanaServiceName = "jx-pipeline-events-kibana"
kibanaDeploymentName = "jx-pipeline-events-kibana"
esDeploymentName = "jx-pipeline-events-elasticsearch-client"
)
var (
createAddonPipelineEventsLong = templates.LongDesc(`
Creates the Jenkins X pipeline events addon
`)
createAddonPipelineEventsExample = templates.Examples(`
# Create the pipeline-events addon
jx create addon pipeline-events
# Create the pipeline-events addon in a custom namespace
jx create addon pipeline-events -n mynamespace
`)
)
// CreateAddonPipelineEventsOptions the options for the create spring command
type CreateAddonPipelineEventsOptions struct {
CreateAddonOptions
Password string
}
// NewCmdCreateAddonPipelineEvents creates a command object for the "create" command
func NewCmdCreateAddonPipelineEvents(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &CreateAddonPipelineEventsOptions{
CreateAddonOptions: CreateAddonOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
},
}
cmd := &cobra.Command{
Use: "pipeline-events",
Short: "Create the pipeline events addon",
Aliases: []string{"pe"},
Long: createAddonPipelineEventsLong,
Example: createAddonPipelineEventsExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
options.addCommonFlags(cmd)
options.addFlags(cmd, defaultPENamespace, defaultPEReleaseName, defaultPEVersion)
cmd.Flags().StringVarP(&options.Password, "password", "p", "", "Password to access pipeline-events services such as Kibana and Elasticsearch. Defaults to default Jenkins X admin password.")
return cmd
}
// Run implements the command
func (o *CreateAddonPipelineEventsOptions) Run() error {
if o.ReleaseName == "" {
return util.MissingOption(optionRelease)
}
err := o.ensureHelm()
if err != nil {
return errors.Wrap(err, "failed to ensure that helm is present")
}
client, err := o.KubeClient()
if err != nil {
return err
}
devNamespace, _, err := kube.GetDevNamespace(client, o.currentNamespace)
if err != nil {
return fmt.Errorf("cannot find a dev team namespace to get existing exposecontroller config from. %v", err)
}
log.Infof("found dev namespace %s\n", devNamespace)
setValues := strings.Split(o.SetValues, ",")
err = o.installChart(o.ReleaseName, kube.ChartPipelineEvent, o.Version, o.Namespace, true, setValues, nil, "")
if err != nil {
return fmt.Errorf("elasticsearch deployment failed: %v", err)
}
log.Info("waiting for elasticsearch deployment to be ready, this can take a few minutes\n")
err = kube.WaitForDeploymentToBeReady(client, esDeploymentName, o.Namespace, 10*time.Minute)
if err != nil {
return err
}
log.Info("waiting for kibana deployment to be ready, this can take a few minutes\n")
err = kube.WaitForDeploymentToBeReady(client, kibanaDeploymentName, o.Namespace, 10*time.Minute)
if err != nil {
return err
}
// annotate the kibana and elasticsearch services so exposecontroller can create an ingress rule
err = o.addExposecontrollerAnnotations(kibanaServiceName)
if err != nil {
return err
}
esServiceName := kube.AddonServices[defaultPEName]
err = o.addExposecontrollerAnnotations(esServiceName)
if err != nil {
return err
}
if o.Password == "" {
o.Password, err = o.getDefaultAdminPassword(devNamespace)
if err != nil {
return err
}
}
// create the ingress rule
err = o.expose(devNamespace, o.Namespace, o.Password)
if err != nil {
return err
}
// get the external services URL
kIng, err := services.GetServiceURLFromName(client, kibanaServiceName, o.Namespace)
if err != nil {
return fmt.Errorf("failed to get external URL for service %s: %v", kibanaServiceName, err)
}
// get the external services URL
esIng, err := services.GetServiceURLFromName(client, esServiceName, o.Namespace)
if err != nil {
return fmt.Errorf("failed to get external URL for service %s: %v", kibanaServiceName, err)
}
// create the local addonAuth.yaml file so `jx get cve` commands work
tokenOptions := CreateTokenAddonOptions{
Password: o.Password,
Username: "admin",
ServerFlags: ServerFlags{
ServerURL: esIng,
ServerName: esDeploymentName,
},
Kind: kube.ValueKindPipelineEvent,
CreateOptions: CreateOptions{
CommonOptions: o.CommonOptions,
},
}
err = tokenOptions.Run()
if err != nil {
return fmt.Errorf("failed to create addonAuth.yaml error: %v", err)
}
_, err = client.CoreV1().Services(o.currentNamespace).Get(esServiceName, meta_v1.GetOptions{})
if err != nil {
// create a services link
err = services.CreateServiceLink(client, o.currentNamespace, o.Namespace, esServiceName, esIng)
if err != nil {
return fmt.Errorf("failed creating a service link for %s in target namespace %s", esServiceName, o.Namespace)
}
}
log.Successf("kibana is available and running %s\n", kIng)
return nil
}
func (o *CreateAddonPipelineEventsOptions) addExposecontrollerAnnotations(serviceName string) error {
client, err := o.KubeClient()
if err != nil {
return err
}
svc, err := client.CoreV1().Services(o.Namespace).Get(serviceName, meta_v1.GetOptions{})
if err != nil {
return fmt.Errorf("failed to get Service %s: %v", serviceName, err)
}
if svc.Annotations == nil {
svc.Annotations = map[string]string{}
}
annotationsUpdated := false
if svc.Annotations[kube.AnnotationExpose] == "" {
svc.Annotations[kube.AnnotationExpose] = "true"
annotationsUpdated = true
}
if svc.Annotations[kube.AnnotationIngress] == "" {
svc.Annotations[kube.AnnotationIngress] = "nginx.ingress.kubernetes.io/auth-type: basic\nnginx.ingress.kubernetes.io/auth-secret: jx-basic-auth"
annotationsUpdated = true
}
if annotationsUpdated {
svc, err = client.CoreV1().Services(o.Namespace).Update(svc)
if err != nil {
return fmt.Errorf("failed to update service %s/%s", o.Namespace, serviceName)
}
}
return nil
}