-
Notifications
You must be signed in to change notification settings - Fork 51
/
variables.go
664 lines (610 loc) · 18.3 KB
/
variables.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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
package variables
import (
"context"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"sort"
"strconv"
"strings"
"github.com/jenkins-x-plugins/jx-gitops/pkg/rootcmd"
"github.com/jenkins-x-plugins/jx-gitops/pkg/variablefinders"
jxcore "github.com/jenkins-x/jx-api/v4/pkg/apis/core/v4beta1"
v1 "github.com/jenkins-x/jx-api/v4/pkg/apis/jenkins.io/v1"
jxc "github.com/jenkins-x/jx-api/v4/pkg/client/clientset/versioned"
"github.com/jenkins-x/jx-helpers/v3/pkg/cobras/helper"
"github.com/jenkins-x/jx-helpers/v3/pkg/cobras/templates"
"github.com/jenkins-x/jx-helpers/v3/pkg/files"
"github.com/jenkins-x/jx-helpers/v3/pkg/gitclient"
"github.com/jenkins-x/jx-helpers/v3/pkg/gitclient/cli"
"github.com/jenkins-x/jx-helpers/v3/pkg/gitclient/giturl"
"github.com/jenkins-x/jx-helpers/v3/pkg/kube"
"github.com/jenkins-x/jx-helpers/v3/pkg/kube/activities"
"github.com/jenkins-x/jx-helpers/v3/pkg/kube/jxclient"
"github.com/jenkins-x/jx-helpers/v3/pkg/kube/naming"
"github.com/jenkins-x/jx-helpers/v3/pkg/kube/services"
"github.com/jenkins-x/jx-helpers/v3/pkg/scmhelpers"
"github.com/jenkins-x/jx-helpers/v3/pkg/stringhelpers"
"github.com/jenkins-x/jx-helpers/v3/pkg/termcolor"
"github.com/jenkins-x/jx-logging/v3/pkg/log"
"github.com/pkg/errors"
"github.com/spf13/cobra"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)
var (
info = termcolor.ColorInfo
cmdLong = templates.LongDesc(`
Lazily creates a .jx/variables.sh script with common pipeline environment variables
`)
cmdExample = templates.Examples(`
# lazily create the .jx/variables.sh file
%s variables
`)
)
// Options the options for the command
type Options struct {
scmhelpers.Options
File string
RepositoryName string
RepositoryURL string
ConfigMapName string
Namespace string
VersionFile string
BuildNumber string
BuildID string
GitCommitUsername string
GitCommitUserEmail string
GitBranch string
DashboardURL string
Commit bool
KubeClient kubernetes.Interface
JXClient jxc.Interface
Requirements *jxcore.RequirementsConfig
ConfigMapData map[string]string
entries map[string]*Entry
factories []Factory
}
// Entry a variable entry in the file on load
type Entry struct {
Name string
Value string
Index int
}
// Factory used to create a variable if its not defined locally
type Factory struct {
Name string
Function func() (string, error)
Value string
}
// NewCmdVariables creates a command object for the command
func NewCmdVariables() (*cobra.Command, *Options) {
o := &Options{}
cmd := &cobra.Command{
Use: "variables",
Short: "Lazily creates a .jx/variables.sh script with common pipeline environment variables",
Long: cmdLong,
Example: fmt.Sprintf(cmdExample, rootcmd.BinaryName),
Run: func(cmd *cobra.Command, args []string) {
err := o.Run()
helper.CheckErr(err)
},
}
o.DiscoverFromGit = true
cmd.Flags().StringVarP(&o.File, "file", "f", filepath.Join(".jx", "variables.sh"), "the default variables file to lazily create or enrich")
cmd.Flags().StringVarP(&o.RepositoryName, "repo-name", "n", "release-repo", "the name of the helm chart to release to. If not specified uses JX_CHART_REPOSITORY environment variable")
cmd.Flags().StringVarP(&o.RepositoryURL, "repo-url", "u", "", "the URL to release to")
cmd.Flags().StringVarP(&o.GitCommitUsername, "git-user-name", "", "", "the user name to git commit")
cmd.Flags().StringVarP(&o.GitCommitUserEmail, "git-user-email", "", "", "the user email to git commit")
cmd.Flags().StringVarP(&o.Namespace, "namespace", "", "", "the namespace to look for the dev Environment. Defaults to the current namespace")
cmd.Flags().StringVarP(&o.BuildNumber, "build-number", "", "", "the build number to use. If not specified defaults to $BUILD_NUMBER")
cmd.Flags().StringVarP(&o.ConfigMapName, "configmap", "", "jenkins-x-docker-registry", "the ConfigMap used to load environment variables")
cmd.Flags().StringVarP(&o.VersionFile, "version-file", "", "", "the file to load the version from if not specified directly or via a $VERSION environment variable. Defaults to VERSION in the current dir")
cmd.Flags().BoolVarP(&o.Commit, "commit", "", true, "commit variables.sh")
o.Options.AddFlags(cmd)
return cmd, o
}
// Run implements the command
func (o *Options) Validate() error {
err := o.Options.Validate()
if err != nil {
return errors.Wrapf(err, "failed to validate scm options")
}
if o.VersionFile == "" {
o.VersionFile = filepath.Join(o.Dir, "VERSION")
}
if o.entries == nil {
o.entries = map[string]*Entry{}
}
o.JXClient, o.Namespace, err = jxclient.LazyCreateJXClientAndNamespace(o.JXClient, o.Namespace)
if err != nil {
return errors.Wrapf(err, "failed to create jx client")
}
o.KubeClient, err = kube.LazyCreateKubeClient(o.KubeClient)
if err != nil {
return errors.Wrapf(err, "failed to create kube client")
}
if o.GitClient == nil {
o.GitClient = cli.NewCLIClient("", o.CommandRunner)
}
if o.Requirements == nil {
o.Requirements, err = variablefinders.FindRequirements(o.GitClient, o.JXClient, o.Namespace, o.Dir, o.Owner, o.Repository)
if err != nil {
return errors.Wrapf(err, "failed to load requirements")
}
}
if o.ConfigMapData == nil {
cm, err := o.KubeClient.CoreV1().ConfigMaps(o.Namespace).Get(context.TODO(), o.ConfigMapName, metav1.GetOptions{})
if err != nil {
if !apierrors.IsNotFound(err) {
return errors.Wrapf(err, "failed to load ConfigMap %s in namespace %s", o.ConfigMapName, o.Namespace)
}
}
if o.ConfigMapData == nil {
o.ConfigMapData = map[string]string{}
}
if cm != nil && cm.Data != nil {
for k, v := range cm.Data {
name := configMapKeyToEnvVar(k)
o.ConfigMapData[name] = v
}
}
if o.ConfigMapData["MINK_AS"] == "" {
o.ConfigMapData["MINK_AS"] = "tekton-bot"
}
}
if o.RepositoryURL == "" {
registryOrg, err := o.dockerRegistryOrg()
if err != nil {
return errors.Wrapf(err, "failed to find container registry org")
}
o.RepositoryURL, err = variablefinders.FindRepositoryURL(o.Requirements, registryOrg, o.Repository)
if err != nil {
return errors.Wrapf(err, "failed to find chart repository URL")
}
}
if o.Options.Branch == "" || o.Options.Branch == "HEAD" {
o.Options.Branch, err = o.Options.GetBranch()
if err != nil {
return errors.Wrapf(err, "failed to find branch name")
}
}
o.BuildNumber, err = o.GetBuildNumber()
if err != nil {
return errors.Wrapf(err, "failed to find build number")
}
o.factories = []Factory{
{
Name: "APP_NAME",
Function: func() (string, error) {
return o.Options.Repository, nil
},
},
{
Name: "BRANCH_NAME",
Function: func() (string, error) {
return o.Options.Branch, err
},
},
{
Name: "BUILD_NUMBER",
Function: func() (string, error) {
return o.BuildNumber, nil
},
},
{
Name: "DOCKERFILE_PATH",
Function: func() (string, error) {
return o.FindDockerfilePath()
},
},
{
Name: "DOCKER_REGISTRY",
Function: func() (string, error) {
return o.dockerRegistry()
},
},
{
Name: "DOCKER_REGISTRY_ORG",
Function: func() (string, error) {
return o.dockerRegistryOrg()
},
},
{
Name: "DOMAIN",
Function: func() (string, error) {
return o.Requirements.Ingress.Domain, nil
},
},
{
Name: "GIT_BRANCH",
Function: func() (string, error) {
return o.GetGitBranch()
},
},
{
Name: "JENKINS_X_URL",
Function: func() (string, error) {
return o.GetJenkinsXURL()
},
},
{
Name: "JX_CHART_REPOSITORY",
Function: func() (string, error) {
registryOrg, err := o.dockerRegistryOrg()
if err != nil {
return "", errors.Wrapf(err, "failed to find container registry org")
}
return variablefinders.FindRepositoryURL(o.Requirements, registryOrg, o.Options.Repository)
},
},
{
Name: "MINK_IMAGE",
Function: func() (string, error) {
return o.minkImage()
},
},
{
Name: "NAMESPACE_SUB_DOMAIN",
Function: func() (string, error) {
return o.Requirements.Ingress.NamespaceSubDomain, nil
},
},
{
Name: "PIPELINE_KIND",
Function: func() (string, error) {
return variablefinders.FindPipelineKind(o.Branch)
},
},
{
Name: "PUSH_CONTAINER_REGISTRY",
Function: func() (string, error) {
return o.pushContainerRegistry()
},
},
{
Name: "REPO_NAME",
Function: func() (string, error) {
return o.getRepoName(), nil
},
},
{
Name: "REPO_OWNER",
Function: func() (string, error) {
return o.Options.Owner, nil
},
},
{
Name: "VERSION",
Function: func() (string, error) {
return variablefinders.FindVersion(o.VersionFile, o.Options.Branch, o.BuildNumber)
},
},
}
// lets add any extra values from the ConfigMap
for k, v := range o.ConfigMapData {
found := false
for i := range o.factories {
if o.factories[i].Name == k {
found = true
}
}
if !found {
o.factories = append(o.factories, Factory{
Name: k,
Value: v,
})
}
}
sort.Slice(o.factories, func(i, j int) bool {
return o.factories[i].Name < o.factories[j].Name
})
return nil
}
// Run implements the command
func (o *Options) Run() error {
err := o.Validate()
if err != nil {
return errors.Wrapf(err, "failed to validate")
}
file := o.File
if o.Dir != "" {
file = filepath.Join(o.Dir, file)
}
exists, err := files.FileExists(file)
if err != nil {
return errors.Wrapf(err, "failed to check if file exists %s", file)
}
source := ""
if exists {
data, err := ioutil.ReadFile(file)
if err != nil {
return errors.Wrapf(err, "failed to read file %s", file)
}
source = string(data)
lines := strings.Split(source, "\n")
for i, line := range lines {
if strings.HasSuffix(line, "export ") {
text := strings.TrimSpace(line[len("export "):])
idx := strings.Index(text, "=")
if idx > 0 {
name := strings.TrimSpace(text[0:idx])
if name != "" {
value := strings.TrimSpace(text[idx+1:])
entry := &Entry{
Name: name,
Value: value,
Index: i,
}
o.entries[name] = entry
}
}
}
}
source += "\n\n"
}
buf := strings.Builder{}
buf.WriteString("\n# generated by: jx gitops variables\n")
for i := range o.factories {
f := &o.factories[i]
name := f.Name
entry := o.entries[name]
value := ""
if entry != nil {
value = entry.Value
}
if value == "" {
if f.Function == nil {
value = f.Value
} else {
value, err = f.Function()
if err != nil {
return errors.Wrapf(err, "failed to evaluate function for variable %s", name)
}
}
if value != "" {
log.Logger().Infof("export %s='%s'", name, value)
line := fmt.Sprintf("export %s='%s'", name, value)
buf.WriteString(line)
buf.WriteString("\n")
}
}
}
if source != "" {
buf.WriteString("\n\n# content from git...\n")
buf.WriteString(source)
}
source = buf.String()
dir := filepath.Dir(file)
err = os.MkdirAll(dir, files.DefaultDirWritePermissions)
if err != nil {
return errors.Wrapf(err, "failed to create dir %s", dir)
}
err = ioutil.WriteFile(file, []byte(source), files.DefaultFileWritePermissions)
if err != nil {
return errors.Wrapf(err, "failed to save %s", file)
}
log.Logger().Infof("added variables to file: %s", info(file))
if o.Commit {
_, _, err = gitclient.EnsureUserAndEmailSetup(o.GitClient, o.Dir, o.GitCommitUsername, o.GitCommitUserEmail)
if err != nil {
return errors.Wrapf(err, "failed to setup git user and email")
}
_, err = gitclient.AddAndCommitFiles(o.GitClient, o.Dir, "chore: add variables")
if err != nil {
return errors.Wrapf(err, "failed to commit changes")
}
}
return nil
}
func (o *Options) dockerRegistry() (string, error) {
answer := ""
if o.Requirements != nil {
answer = o.Requirements.Cluster.Registry
}
if answer == "" {
answer = o.ConfigMapData["DOCKER_REGISTRY"]
}
return strings.ToLower(answer), nil
}
func (o *Options) pushContainerRegistry() (string, error) {
answer := o.ConfigMapData["PUSH_CONTAINER_REGISTRY"]
if answer == "" {
return o.dockerRegistry()
}
return answer, nil
}
func (o *Options) dockerRegistryOrg() (string, error) {
answer := ""
if answer == "" {
answer = o.ConfigMapData["DOCKER_REGISTRY_ORG"]
}
if answer != "" {
return answer, nil
}
return variablefinders.DockerRegistryOrg(o.Requirements, o.Options.Owner)
}
func (o *Options) GetGitBranch() (string, error) {
if o.GitBranch == "" {
var err error
o.GitBranch, err = gitclient.Branch(o.GitClient, o.Dir)
if err != nil {
log.Logger().Warnf("failed to get the current git branch as probably not in a git clone directory, so cannot create the GIT_BRANCH. (%s)", err.Error())
o.GitBranch = ""
}
}
return o.GitBranch, nil
}
func (o *Options) minkImage() (string, error) {
registry, err := o.dockerRegistry()
if err != nil {
return "", errors.Wrapf(err, "failed to get the docker registry")
}
registryOrg, err := o.dockerRegistryOrg()
if err != nil {
return "", errors.Wrapf(err, "failed to get the docker registry")
}
version, err := variablefinders.FindVersion(o.VersionFile, o.Options.Branch, o.BuildNumber)
if err != nil {
return "", errors.Wrapf(err, "failed to find version")
}
image := o.Options.Repository + ":" + version
return stringhelpers.UrlJoin(registry, registryOrg, image), nil
}
// GetBuildNumber returns the build number from BUILD_NUMBER or uses PipelineActivities to create/find it
func (o *Options) GetBuildNumber() (string, error) {
if o.BuildNumber == "" {
o.BuildNumber = os.Getenv("BUILD_NUMBER")
if o.BuildNumber == "" {
var err error
buildID := o.GetBuildID()
if buildID != "" {
o.BuildNumber, err = o.FindBuildNumber(buildID)
if err != nil {
return "", errors.Wrapf(err, "failed to find BuildNumber")
}
} else {
log.Logger().Warnf("no $BUILD_ID found so cannot create the BUILD_NUMBER")
}
}
}
return o.BuildNumber, nil
}
// FindBuildNumber finds the build number for the given build ID
func (o *Options) FindBuildNumber(buildID string) (string, error) {
// lets try find a PipelineActivity with this build ID...
activityInterface := o.JXClient.JenkinsV1().PipelineActivities(o.Namespace)
owner := o.Options.Owner
repository := o.Options.Repository
branch := o.Options.Branch
var activitySlice []*v1.PipelineActivity
safeOwner := naming.ToValidName(owner)
safeRepository := naming.ToValidName(repository)
safeBranch := naming.ToValidName(branch)
resources, err := activityInterface.List(context.TODO(), metav1.ListOptions{})
if err != nil && !apierrors.IsNotFound(err) {
return "", errors.Wrapf(err, "failed to find PipelineActivity resources in namespace %s", o.Namespace)
}
if resources != nil {
for i := range resources.Items {
pa := &resources.Items[i]
ps := &pa.Spec
if (ps.GitOwner == owner || ps.GitOwner == safeOwner) &&
(ps.GitRepository == repository || ps.GitRepository == safeRepository) &&
(ps.GitBranch == branch || ps.GitBranch == safeBranch) {
activitySlice = append(activitySlice, pa)
}
}
}
maxBuild := 0
for _, pa := range activitySlice {
labels := pa.Labels
if labels == nil {
continue
}
if labels["buildID"] == buildID || labels["lighthouse.jenkins-x.io/buildNum"] == buildID {
if pa.Spec.Build == "" {
log.Logger().Warnf("PipelineActivity %s does not have a spec.build value", pa.Name)
} else {
return pa.Spec.Build, nil
}
continue
}
if pa.Spec.Build != "" {
i, err := strconv.Atoi(pa.Spec.Build)
if err != nil {
log.Logger().Warnf("PipelineActivity %s has an invalid spec.build number %s should be an integer: %s", pa.Name, pa.Spec.Build, err.Error())
} else if i > maxBuild {
maxBuild = i
}
}
}
o.BuildNumber = strconv.Itoa(maxBuild + 1)
// lets lazy create a new PipelineActivity for this new build number...
pipeline := fmt.Sprintf("%s/%s/%s", owner, repository, branch)
name := naming.ToValidName(pipeline + "-" + o.BuildNumber)
key := &activities.PromoteStepActivityKey{
PipelineActivityKey: activities.PipelineActivityKey{
Name: name,
Pipeline: pipeline,
Build: o.BuildNumber,
GitInfo: &giturl.GitRepository{
Name: repository,
Organisation: owner,
},
Labels: map[string]string{
"buildID": buildID,
},
},
}
_, _, err = key.GetOrCreate(o.JXClient, o.Namespace)
if err != nil {
return o.BuildNumber, errors.Wrapf(err, "failed to lazily create PipelineActivity %s", name)
}
return o.BuildNumber, nil
}
// GetBuildID returns the current build ID
func (o *Options) GetBuildID() string {
if o.BuildID == "" {
o.BuildID = os.Getenv("BUILD_ID")
}
return o.BuildID
}
// FindDockerfilePath finds the dockerfile path to use relative to the current directory
func (o *Options) FindDockerfilePath() (string, error) {
kind, err := variablefinders.FindPipelineKind(o.Branch)
if err != nil {
return "", errors.Wrapf(err, "failed to find pipeline kind")
}
if kind == "pullrequest" {
name := "Dockerfile-preview"
path := filepath.Join(o.Dir, name)
exists, err := files.FileExists(path)
if err != nil {
return "", errors.Wrapf(err, "failed to detect file %s", path)
}
if exists {
return name, nil
}
}
return "Dockerfile", nil
}
// GetJenkinsXURL returns the Jenkins URL
func (o *Options) GetJenkinsXURL() (string, error) {
dash, err := o.GetDashboardURL()
if dash == "" || err != nil {
return "", err
}
owner := o.Options.Owner
repo := o.Options.Repository
branch := o.Options.Branch
build := o.BuildNumber
if owner == "" || repo == "" || branch == "" || build == "" {
return "", nil
}
return stringhelpers.UrlJoin(dash, owner, repo, branch, build), nil
}
// GetDashboardURL
func (o *Options) GetDashboardURL() (string, error) {
if o.DashboardURL == "" {
var err error
name := "jx-pipelines-visualizer"
o.DashboardURL, err = services.GetServiceURLFromName(o.KubeClient, name, o.Namespace)
if err != nil {
log.Logger().Warnf("cannot discover the URL of service %s in namespace %s due to %v", name, o.Namespace, err)
}
}
return o.DashboardURL, nil
}
// ToLower is required because repos with capitals in their names are not allowed in chartmuseum and it will throw a 500 error.
func (o *Options) getRepoName() string {
return strings.ToLower(o.Options.Repository)
}
func configMapKeyToEnvVar(k string) string {
text := strings.ToUpper(k)
text = strings.ReplaceAll(text, ".", "_")
text = strings.ReplaceAll(text, "-", "_")
return text
}