-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.go
593 lines (519 loc) · 18.2 KB
/
init.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
package cmd
import (
"fmt"
"io"
"net"
"os"
"path/filepath"
"strings"
"time"
"github.com/jenkins-x/jx/pkg/gits"
"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"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1"
rbacv1 "k8s.io/api/rbac/v1"
"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)
// InitOptions the flags for running init
type InitOptions struct {
CommonOptions
Client clientset.Clientset
Flags InitFlags
}
type InitFlags struct {
Domain string
Provider string
Namespace string
Username string
UserClusterRole string
TillerClusterRole string
IngressClusterRole string
TillerNamespace string
IngressNamespace string
IngressService string
IngressDeployment string
DraftClient bool
HelmClient bool
RecreateExistingDraftRepos bool
GlobalTiller bool
SkipIngress bool
SkipTiller bool
}
const (
optionUsername = "username"
optionNamespace = "namespace"
optionTillerNamespace = "tiller-namespace"
jenkinsPackURL = "https://github.com/jenkins-x/draft-packs"
INGRESS_SERVICE_NAME = "jxing-nginx-ingress-controller"
DEFAULT_CHARTMUSEUM_URL = "http://chartmuseum.build.cd.jenkins-x.io"
)
var (
initLong = templates.LongDesc(`
This command installs the Jenkins X platform on a connected kubernetes cluster
`)
initExample = templates.Examples(`
jx init
`)
)
// NewCmdInit creates a command object for the generic "init" action, which
// primes a kubernetes cluster so it's ready for jenkins x to be installed
func NewCmdInit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &InitOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "init",
Short: "Init Jenkins X",
Long: initLong,
Example: initExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
cmdutil.CheckErr(err)
},
}
options.addCommonFlags(cmd)
cmd.Flags().StringVarP(&options.Flags.Provider, "provider", "", "", "Cloud service providing the kubernetes cluster. Supported providers: "+KubernetesProviderOptions())
cmd.Flags().StringVarP(&options.Flags.Namespace, optionNamespace, "", "jx", "The namespace the Jenkins X platform should be installed into")
options.addInitFlags(cmd)
return cmd
}
func (options *InitOptions) addInitFlags(cmd *cobra.Command) {
cmd.Flags().StringVarP(&options.Flags.Domain, "domain", "", "", "Domain to expose ingress endpoints. Example: jenkinsx.io")
cmd.Flags().StringVarP(&options.Flags.Username, optionUsername, "", "", "The kubernetes username used to initialise helm. Usually your email address for your kubernetes account")
cmd.Flags().StringVarP(&options.Flags.UserClusterRole, "user-cluster-role", "", "cluster-admin", "The cluster role for the current user to be able to administer helm")
cmd.Flags().StringVarP(&options.Flags.TillerClusterRole, "tiller-cluster-role", "", "cluster-admin", "The cluster role for Helm's tiller")
cmd.Flags().StringVarP(&options.Flags.TillerNamespace, optionTillerNamespace, "", "kube-system", "The namespace for the Tiller when using a gloabl tiller")
cmd.Flags().StringVarP(&options.Flags.IngressClusterRole, "ingress-cluster-role", "", "cluster-admin", "The cluster role for the Ingress controller")
cmd.Flags().StringVarP(&options.Flags.IngressNamespace, "ingress-namespace", "", "kube-system", "The namespace for the Ingress controller")
cmd.Flags().StringVarP(&options.Flags.IngressService, "ingress-service", "", INGRESS_SERVICE_NAME, "The name of the Ingress controller Service")
cmd.Flags().StringVarP(&options.Flags.IngressDeployment, "ingress-deployment", "", INGRESS_SERVICE_NAME, "The namespace for the Ingress controller Deployment")
cmd.Flags().BoolVarP(&options.Flags.DraftClient, "draft-client-only", "", false, "Only install draft client")
cmd.Flags().BoolVarP(&options.Flags.HelmClient, "helm-client-only", "", false, "Only install helm client")
cmd.Flags().BoolVarP(&options.Flags.RecreateExistingDraftRepos, "recreate-existing-draft-repos", "", false, "Delete existing helm repos used by Jenkins X under ~/draft/packs")
cmd.Flags().BoolVarP(&options.Flags.GlobalTiller, "global-tiller", "", true, "Whether or not to use a cluster global tiller")
cmd.Flags().BoolVarP(&options.Flags.SkipIngress, "skip-ingress", "", false, "Dont install an ingress controller")
cmd.Flags().BoolVarP(&options.Flags.SkipTiller, "skip-tiller", "", false, "Dont install a Helms Tiller service")
}
func (o *InitOptions) Run() error {
var err error
o.Flags.Provider, err = o.GetCloudProvider(o.Flags.Provider)
if err != nil {
return err
}
err = o.enableClusterAdminRole()
if err != nil {
return err
}
// helm init, this has been seen to fail intermittently on public clouds, so lets retry a couple of times
err = o.retry(3, 2*time.Second, func() (err error) {
err = o.initHelm()
return
})
if err != nil {
log.Fatalf("helm init failed: %v", err)
return err
}
// draft init
err = o.initDraft()
if err != nil {
log.Fatalf("draft init failed: %v", err)
return err
}
// install ingress
if !o.Flags.SkipIngress {
err = o.initIngress()
if err != nil {
log.Fatalf("ingress init failed: %v", err)
return err
}
}
return nil
}
func (o *InitOptions) enableClusterAdminRole() error {
f := o.Factory
client, _, err := f.CreateClient()
if err != nil {
return err
}
user := o.Flags.Username
if user == "" {
config, _, err := kube.LoadConfig()
if err != nil {
return err
}
if config == nil || config.Contexts == nil || len(config.Contexts) == 0 {
return fmt.Errorf("No kubernetes contexts available! Try create or connect to cluster?")
}
contextName := config.CurrentContext
if contextName == "" {
return fmt.Errorf("No kuberentes context selected. Please select one (e.g. via jx context) first")
}
context := config.Contexts[contextName]
if context == nil {
return fmt.Errorf("No kuberentes context available for context %s", contextName)
}
user = context.AuthInfo
}
if user == "" {
return util.MissingOption(optionUsername)
}
user = kube.ToValidName(user)
role := o.Flags.UserClusterRole
clusterRoleBindingName := kube.ToValidName(user + "-" + role + "-binding")
_, err = client.RbacV1().ClusterRoleBindings().Get(clusterRoleBindingName, meta_v1.GetOptions{})
if err != nil {
o.Printf("Trying to create ClusterRoleBinding %s for role: %s for user %s\n", clusterRoleBindingName, role, user)
args := []string{"create", "clusterrolebinding", clusterRoleBindingName, "--clusterrole=" + role, "--user=" + user}
err := o.runCommand("kubectl", args...)
if err != nil {
return err
}
o.Printf("Created ClusterRoleBinding %s\n", clusterRoleBindingName)
}
return nil
}
func (o *InitOptions) initHelm() error {
var err error
if !o.Flags.SkipTiller {
f := o.Factory
client, curNs, err := f.CreateClient()
if err != nil {
return err
}
serviceAccountName := "tiller"
tillerNamespace := o.Flags.TillerNamespace
if o.Flags.GlobalTiller {
if tillerNamespace == "" {
return util.MissingOption(optionTillerNamespace)
}
} else {
ns := o.Flags.Namespace
if ns == "" {
ns = curNs
}
if ns == "" {
return util.MissingOption(optionNamespace)
}
tillerNamespace = ns
}
err = o.ensureServiceAccount(tillerNamespace, serviceAccountName)
if err != nil {
return err
}
if o.Flags.GlobalTiller {
clusterRoleBindingName := serviceAccountName
role := o.Flags.TillerClusterRole
err = o.ensureClusterRoleBinding(clusterRoleBindingName, role, tillerNamespace, serviceAccountName)
if err != nil {
return err
}
} else {
// lets create a tiller service account
roleName := "tiller-manager"
roleBindingName := "tiller-binding"
_, err = client.RbacV1().Roles(tillerNamespace).Get(roleName, meta_v1.GetOptions{})
if err != nil {
// lets create a Role for tiller
role := &rbacv1.Role{
ObjectMeta: meta_v1.ObjectMeta{
Name: roleName,
Namespace: tillerNamespace,
},
Rules: []rbacv1.PolicyRule{
{
APIGroups: []string{"", "extensions", "apps"},
Resources: []string{"*"},
Verbs: []string{"*"},
},
},
}
_, err = client.RbacV1().Roles(tillerNamespace).Create(role)
if err != nil {
return fmt.Errorf("Failed to create Role %s in namespace %s: %s", roleName, tillerNamespace, err)
}
o.Printf("Created Role %s in namespace %s\n", util.ColorInfo(roleName), util.ColorInfo(tillerNamespace))
}
_, err = client.RbacV1().RoleBindings(tillerNamespace).Get(roleBindingName, meta_v1.GetOptions{})
if err != nil {
// lets create a RoleBinding for tiller
roleBinding := &rbacv1.RoleBinding{
ObjectMeta: meta_v1.ObjectMeta{
Name: roleBindingName,
Namespace: tillerNamespace,
},
Subjects: []rbacv1.Subject{
{
Kind: "ServiceAccount",
Name: serviceAccountName,
Namespace: tillerNamespace,
},
},
RoleRef: rbacv1.RoleRef{
Kind: "Role",
Name: roleName,
APIGroup: "rbac.authorization.k8s.io",
},
}
_, err = client.RbacV1().RoleBindings(tillerNamespace).Create(roleBinding)
if err != nil {
return fmt.Errorf("Failed to create RoleBinding %s in namespace %s: %s", roleName, tillerNamespace, err)
}
o.Printf("Created RoleBinding %s in namespace %s\n", util.ColorInfo(roleName), util.ColorInfo(tillerNamespace))
}
}
running, err := kube.IsDeploymentRunning(client, "tiller-deploy", tillerNamespace)
if running {
o.Printf("Tiller Deployment is running in namespace %s\n", util.ColorInfo(tillerNamespace))
return nil
}
if err == nil && !running {
return fmt.Errorf("existing tiller deployment found but not running, please check the %s namespace and resolve any issues", tillerNamespace)
}
if !running {
o.Printf("Initialising helm using ServiceAccount %s in namespace %s\n", util.ColorInfo(serviceAccountName), util.ColorInfo(tillerNamespace))
err = o.runCommand("helm", "init", "--service-account", serviceAccountName, "--tiller-namespace", tillerNamespace)
if err != nil {
return err
}
err = o.runCommand("helm", "init", "--upgrade", "--service-account", serviceAccountName, "--tiller-namespace", tillerNamespace)
if err != nil {
return err
}
}
err = kube.WaitForDeploymentToBeReady(client, "tiller-deploy", tillerNamespace, 10*time.Minute)
if err != nil {
return err
}
}
if o.Flags.HelmClient || o.Flags.SkipTiller {
err = o.runCommand("helm", "init", "--client-only")
if err != nil {
return err
}
}
err = o.runCommand("helm", "repo", "add", "jenkins-x", DEFAULT_CHARTMUSEUM_URL)
if err != nil {
return err
}
log.Success("helm installed and configured")
return nil
}
func (o *InitOptions) initDraft() error {
draftDir, err := util.DraftDir()
if err != nil {
return err
}
dir := filepath.Join(draftDir, "packs", "github.com", "jenkins-x", "draft-packs")
if err := os.MkdirAll(dir, 0755); err != nil {
return fmt.Errorf("Could not create %s: %s", dir, err)
}
return gits.GitCloneOrPull(jenkinsPackURL, dir)
}
func (o *InitOptions) initIngress() error {
f := o.Factory
client, _, err := f.CreateClient()
if err != nil {
return err
}
ingressNamespace := o.Flags.IngressNamespace
/*
ingressServiceAccount := "ingress"
err = o.ensureServiceAccount(ingressNamespace, ingressServiceAccount)
if err != nil {
return err
}
role := o.Flags.IngressClusterRole
clusterRoleBindingName := kube.ToValidName(ingressServiceAccount + "-" + role + "-binding")
err = o.ensureClusterRoleBinding(clusterRoleBindingName, role, ingressNamespace, ingressServiceAccount)
if err != nil {
return err
}
*/
currentContext, err := o.getCommandOutput("", "kubectl", "config", "current-context")
if err != nil {
return err
}
if currentContext == "minikube" {
if o.Flags.Provider == "" {
o.Flags.Provider = MINIKUBE
}
addons, err := o.getCommandOutput("", "minikube", "addons", "list")
if err != nil {
return err
}
if strings.Contains(addons, "- ingress: enabled") {
log.Success("nginx ingress controller already enabled")
return nil
}
err = o.runCommand("minikube", "addons", "enable", "ingress")
if err != nil {
return err
}
log.Success("nginx ingress controller now enabled on minikube")
return nil
}
podCount, err := kube.DeploymentPodCount(client, o.Flags.IngressDeployment, ingressNamespace)
if podCount == 0 {
installIngressController := false
if o.BatchMode {
installIngressController = true
} else {
prompt := &survey.Confirm{
Message: "No existing ingress controller found in the " + ingressNamespace + " namespace, shall we install one?",
Default: true,
Help: "An ingress controller works with an external loadbalancer so you can access Jenkins X and your applications",
}
survey.AskOne(prompt, &installIngressController, nil)
}
if !installIngressController {
return nil
}
i := 0
for {
//err = o.runCommand("helm", "install", "--name", "jxing", "stable/nginx-ingress", "--namespace", ingressNamespace, "--set", "rbac.create=true", "--set", "rbac.serviceAccountName="+ingressServiceAccount)
err = o.runCommand("helm", "install", "--name", "jxing", "stable/nginx-ingress", "--namespace", ingressNamespace, "--set", "rbac.create=true")
if err != nil {
if i >= 3 {
break
}
i++
time.Sleep(time.Second)
} else {
break
}
}
err = kube.WaitForDeploymentToBeReady(client, o.Flags.IngressDeployment, ingressNamespace, 10*time.Minute)
if err != nil {
return err
}
} else {
log.Info("existing ingress controller found, no need to install a new one\n")
}
if o.Flags.Provider == GKE || o.Flags.Provider == AKS || o.Flags.Provider == AWS || o.Flags.Provider == EKS || o.Flags.Provider == KUBERNETES || o.Flags.Provider == OPENSHIFT {
log.Infof("Waiting for external loadbalancer to be created and update the nginx-ingress-controller service in %s namespace\n", ingressNamespace)
if o.Flags.Provider == GKE {
log.Infof("Note: this loadbalancer will fail to be provisioned if you have insufficient quotas, this can happen easily on a GKE free account. To view quotas run: %s\n", util.ColorInfo("gcloud compute project-info describe"))
}
err = kube.WaitForExternalIP(client, o.Flags.IngressService, ingressNamespace, 10*time.Minute)
if err != nil {
return err
}
log.Infof("External loadbalancer created\n")
o.Flags.Domain, err = o.GetDomain(client, o.Flags.Domain, o.Flags.Domain, ingressNamespace, o.Flags.IngressService)
if err != nil {
return err
}
}
log.Success("nginx ingress controller installed and configured")
return nil
}
func (o *InitOptions) ingressNamespace() string {
ingressNamespace := "kube-system"
if !o.Flags.GlobalTiller {
ingressNamespace = o.Flags.Namespace
}
return ingressNamespace
}
func (o *CommonOptions) GetDomain(client *kubernetes.Clientset, domain string, provider string, ingressNamespace string, ingressService string) (string, error) {
var address string
if provider == MINIKUBE {
ip, err := o.getCommandOutput("", "minikube", "ip")
if err != nil {
return "", err
}
address = ip
} else if provider == MINISHIFT {
ip, err := o.getCommandOutput("", "minishift", "ip")
if err != nil {
return "", err
}
address = ip
} else {
svc, err := client.CoreV1().Services(ingressNamespace).Get(ingressService, meta_v1.GetOptions{})
if err != nil {
return "", err
}
if svc != nil {
for _, v := range svc.Status.LoadBalancer.Ingress {
if v.IP != "" {
address = v.IP
} else if v.Hostname != "" {
address = v.Hostname
}
}
}
}
defaultDomain := address
if address != "" {
addNip := true
aip := net.ParseIP(address)
if aip == nil {
o.Printf("The Ingress address %s is not an IP address. We recommend we try resolve it to a public IP address and use that for the domain to access services externally.\n", util.ColorInfo(address))
addressIP := ""
if util.Confirm("Would you like wait and resolve this address to an IP address and use it for the domain?", true,
"Should we convert "+address+" to an IP address so we can access resources externally") {
o.Printf("Waiting for %s to be resolvable to an IP address...\n", util.ColorInfo(address))
f := func() error {
ips, err := net.LookupIP(address)
if err == nil {
for _, ip := range ips {
t := ip.String()
if t != "" && !ip.IsLoopback() {
addressIP = t
return nil
}
}
}
return fmt.Errorf("Address cannot be resolved yet %s", address)
}
o.retryQuiet(5*6, time.Second*10, f)
}
if addressIP == "" {
addNip = false
o.warnf("Still not managed to resolve address %s into an IP address. Please try figure out the domain by hand\n", address)
} else {
o.Printf("%s resolved to IP %s\n", util.ColorInfo(address), util.ColorInfo(addressIP))
address = addressIP
}
}
if addNip && !strings.HasSuffix(address, ".amazonaws.com") {
defaultDomain = fmt.Sprintf("%s.nip.io", address)
}
}
if domain == "" {
if o.BatchMode {
log.Successf("No domain flag provided so using default %s to generate Ingress rules", defaultDomain)
return defaultDomain, nil
}
log.Successf("You can now configure a wildcard DNS pointing to the new loadbalancer address %s", address)
log.Infof("If you don't have a wildcard DNS yet you can use the default %s", defaultDomain)
if domain == "" {
prompt := &survey.Input{
Message: "Domain",
Default: defaultDomain,
Help: "Enter your custom domain that is used to generate Ingress rules, defaults to the magic dns nip.io",
}
survey.AskOne(prompt, &domain, survey.Required)
}
if domain == "" {
domain = defaultDomain
}
} else {
if domain != defaultDomain {
log.Successf("You can now configure your wildcard DNS %s to point to %s\n", domain, address)
}
}
return domain, nil
}