-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathbuilder.go
More file actions
872 lines (785 loc) · 26.2 KB
/
builder.go
File metadata and controls
872 lines (785 loc) · 26.2 KB
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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
// Copyright 2020 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package manager
import (
"context"
"fmt"
"path/filepath"
"strings"
"github.com/fatih/color"
operator "github.com/pingcap/tiup/pkg/cluster/operation"
"github.com/pingcap/tiup/pkg/cluster/spec"
"github.com/pingcap/tiup/pkg/cluster/task"
"github.com/pingcap/tiup/pkg/crypto"
"github.com/pingcap/tiup/pkg/environment"
logprinter "github.com/pingcap/tiup/pkg/logger/printer"
"github.com/pingcap/tiup/pkg/meta"
"github.com/pingcap/tiup/pkg/set"
"github.com/pingcap/tiup/pkg/tui"
"github.com/pingcap/tiup/pkg/utils"
)
// buildReloadPromTasks reloads Prometheus and Grafana configuration
func buildReloadPromAndGrafanaTasks(
topo spec.Topology,
logger *logprinter.Logger,
gOpt operator.Options,
nodes ...string,
) []*task.StepDisplay {
var instances []spec.Instance
// get promtheus and grafana instance list
monitor := spec.FindComponent(topo, spec.ComponentPrometheus)
grafanas := spec.FindComponent(topo, spec.ComponentGrafana)
instances = append(instances, monitor.Instances()...)
instances = append(instances, grafanas.Instances()...)
if len(instances) == 0 {
return nil
}
var tasks []*task.StepDisplay
deletedNodes := set.NewStringSet(nodes...)
for _, inst := range instances {
if deletedNodes.Exist(inst.ID()) {
continue
}
t := task.NewBuilder(logger)
if inst.ComponentName() == spec.ComponentPrometheus {
// reload Prometheus
t = t.SystemCtl(inst.GetManageHost(), inst.ServiceName(), "reload", true, true)
} else {
// restart grafana
t = t.SystemCtl(inst.GetManageHost(), inst.ServiceName(), "restart", true, false)
}
tasks = append(tasks, t.BuildAsStep(fmt.Sprintf(" - Reload %s -> %s", inst.ComponentName(), inst.ID())))
}
return tasks
}
func buildScaleOutTask(
m *Manager,
name string,
metadata spec.Metadata,
mergedTopo spec.Topology,
opt DeployOptions,
s, p *tui.SSHConnectionProps,
newPart spec.Topology,
patchedComponents set.StringSet,
gOpt operator.Options,
afterDeploy func(b *task.Builder, newPart spec.Topology, gOpt operator.Options),
final func(b *task.Builder, name string, meta spec.Metadata, gOpt operator.Options),
) (task.Task, error) {
var (
envInitTasks []*task.StepDisplay // tasks which are used to initialize environment
downloadCompTasks []*task.StepDisplay // tasks which are used to download components
deployCompTasks []*task.StepDisplay // tasks which are used to copy components to remote host
)
topo := metadata.GetTopology()
base := metadata.GetBaseMeta()
specManager := m.specManager
tlsCfg, err := topo.TLSConfig(m.specManager.Path(name, spec.TLSCertKeyDir))
if err != nil {
return nil, err
}
// Initialize the environments
initializedHosts := set.NewStringSet()
metadata.GetTopology().IterInstance(func(instance spec.Instance) {
initializedHosts.Insert(instance.GetManageHost())
})
// uninitializedHosts are hosts which haven't been initialized yet
uninitializedHosts := make(map[string]hostInfo) // host -> ssh-port, os, arch
newPart.IterInstance(func(instance spec.Instance) {
host := instance.GetManageHost()
if initializedHosts.Exist(host) {
return
}
if _, found := uninitializedHosts[host]; found {
return
}
uninitializedHosts[host] = hostInfo{
ssh: instance.GetSSHPort(),
os: instance.OS(),
arch: instance.Arch(),
}
var dirs []string
globalOptions := metadata.GetTopology().BaseTopo().GlobalOptions
for _, dir := range []string{globalOptions.DeployDir, globalOptions.DataDir, globalOptions.LogDir} {
for _, dirname := range strings.Split(dir, ",") {
if dirname == "" {
continue
}
dirs = append(dirs, spec.Abs(globalOptions.User, dirname))
}
}
t := task.NewBuilder(m.logger).
RootSSH(
instance.GetManageHost(),
instance.GetSSHPort(),
opt.User,
s.Password,
s.IdentityFile,
s.IdentityFilePassphrase,
gOpt.SSHTimeout,
gOpt.OptTimeout,
gOpt.SSHProxyHost,
gOpt.SSHProxyPort,
gOpt.SSHProxyUser,
p.Password,
p.IdentityFile,
p.IdentityFilePassphrase,
gOpt.SSHProxyTimeout,
gOpt.SSHType,
globalOptions.SSHType,
).
EnvInit(instance.GetManageHost(), base.User, base.Group, opt.SkipCreateUser || globalOptions.User == opt.User).
Mkdir(globalOptions.User, instance.GetManageHost(), dirs...).
BuildAsStep(fmt.Sprintf(" - Initialized host %s ", host))
envInitTasks = append(envInitTasks, t)
})
// Download missing component
downloadCompTasks = buildDownloadCompTasks(
base.Version,
newPart,
m.logger,
gOpt,
)
sshType := topo.BaseTopo().GlobalOptions.SSHType
var iterErr error
// Deploy the new topology and refresh the configuration
newPart.IterInstance(func(inst spec.Instance) {
version := inst.CalculateVersion(base.Version)
deployDir := spec.Abs(base.User, inst.DeployDir())
// data dir would be empty for components which don't need it
dataDirs := spec.MultiDirAbs(base.User, inst.DataDir())
// log dir will always be with values, but might not used by the component
logDir := spec.Abs(base.User, inst.LogDir())
deployDirs := []string{
deployDir,
filepath.Join(deployDir, "bin"),
filepath.Join(deployDir, "conf"),
filepath.Join(deployDir, "scripts"),
}
// Deploy component
tb := task.NewSimpleUerSSH(m.logger, inst.GetManageHost(), inst.GetSSHPort(), base.User, gOpt, p, sshType).
Mkdir(base.User, inst.GetManageHost(), deployDirs...).
Mkdir(base.User, inst.GetManageHost(), dataDirs...).
Mkdir(base.User, inst.GetManageHost(), logDir).
Mkdir(base.User, inst.GetManageHost(), inst.ExtraDirs()...)
srcPath := ""
if patchedComponents.Exist(inst.ComponentName()) {
srcPath = specManager.Path(name, spec.PatchDirName, inst.ComponentName()+".tar.gz")
}
if deployerInstance, ok := inst.(DeployerInstance); ok {
deployerInstance.Deploy(tb, srcPath, deployDir, version, name, version)
} else {
// copy dependency component if needed
switch inst.ComponentName() {
case spec.ComponentTiSpark:
env := environment.GlobalEnv()
var sparkVer utils.Version
if sparkVer, _, iterErr = env.V1Repository().LatestStableVersion(spec.ComponentSpark, false); iterErr != nil {
return
}
tb = tb.DeploySpark(inst, sparkVer.String(), srcPath, deployDir)
default:
tb.CopyComponent(
inst.ComponentSource(),
inst.OS(),
inst.Arch(),
inst.CalculateVersion(version),
srcPath,
inst.GetManageHost(),
deployDir,
)
}
}
deployCompTasks = append(deployCompTasks, tb.BuildAsStep(fmt.Sprintf(" - Deploy instance %s -> %s", inst.ComponentName(), inst.ID())))
})
if iterErr != nil {
return nil, iterErr
}
// Download and copy the latest component to remote if the cluster is imported from Ansible
mergedTopo.IterInstance(func(inst spec.Instance) {
if inst.IsImported() {
deployDir := spec.Abs(base.User, inst.DeployDir())
// data dir would be empty for components which don't need it
// Download and copy the latest component to remote if the cluster is imported from Ansible
tb := task.NewBuilder(m.logger)
version := inst.CalculateVersion(base.Version)
switch compName := inst.ComponentName(); compName {
case spec.ComponentGrafana, spec.ComponentPrometheus, spec.ComponentAlertmanager:
tb.Download(compName, inst.OS(), inst.Arch(), version).
CopyComponent(compName, inst.OS(), inst.Arch(), version, "", inst.GetManageHost(), deployDir)
}
deployCompTasks = append(deployCompTasks, tb.BuildAsStep(fmt.Sprintf(" - Deploy instance %s -> %s", inst.ComponentName(), inst.ID())))
}
})
// init scale out config
scaleOutConfigTasks := buildScaleConfigTasks(m, name, topo, newPart, base, gOpt, p)
certificateTasks, err := buildCertificateTasks(m, name, newPart, base, gOpt, p)
if err != nil {
return nil, err
}
// always ignore config check result in scale out
gOpt.IgnoreConfigCheck = true
refreshConfigTasks, hasImported := buildInitConfigTasks(m, name, mergedTopo, base, gOpt, nil)
// handle dir scheme changes
if hasImported {
if err := spec.HandleImportPathMigration(name); err != nil {
return task.NewBuilder(m.logger).Build(), err
}
}
_, noAgentHosts := getMonitorHosts(mergedTopo)
// Deploy monitor relevant components to remote
dlTasks, dpTasks, err := buildMonitoredDeployTask(
m,
uninitializedHosts,
noAgentHosts,
topo.BaseTopo().GlobalOptions,
topo.BaseTopo().MonitoredOptions,
gOpt,
p,
)
if err != nil {
return nil, err
}
downloadCompTasks = append(downloadCompTasks, dlTasks...)
deployCompTasks = append(deployCompTasks, dpTasks...)
// monitor config
monitorConfigTasks := buildInitMonitoredConfigTasks(
m.specManager,
name,
uninitializedHosts,
noAgentHosts,
*topo.BaseTopo().GlobalOptions,
topo.GetMonitoredOptions(),
m.logger,
gOpt.SSHTimeout,
gOpt.OptTimeout,
gOpt,
p,
)
// monitor tls file
moniterCertificateTasks, err := buildMonitoredCertificateTasks(
m,
name,
uninitializedHosts,
noAgentHosts,
topo.BaseTopo().GlobalOptions,
topo.GetMonitoredOptions(),
gOpt,
p,
)
if err != nil {
return nil, err
}
certificateTasks = append(certificateTasks, moniterCertificateTasks...)
builder, err := m.sshTaskBuilder(name, topo, base.User, gOpt)
if err != nil {
return nil, err
}
// stage2 just start and init config
if !opt.Stage2 {
builder.
ParallelStep("+ Download TiDB components", gOpt.Force, downloadCompTasks...).
ParallelStep("+ Initialize target host environments", gOpt.Force, envInitTasks...).
ParallelStep("+ Deploy TiDB instance", gOpt.Force, deployCompTasks...).
ParallelStep("+ Copy certificate to remote host", gOpt.Force, certificateTasks...).
ParallelStep("+ Generate scale-out config", gOpt.Force, scaleOutConfigTasks...).
ParallelStep("+ Init monitor config", gOpt.Force, monitorConfigTasks...)
}
if afterDeploy != nil {
afterDeploy(builder, newPart, gOpt)
}
builder.Func("Save meta", func(_ context.Context) error {
metadata.SetTopology(mergedTopo)
return m.specManager.SaveMeta(name, metadata)
})
// don't start the new instance
if opt.Stage1 {
// save scale out file lock
builder.Func("Create scale-out file lock", func(_ context.Context) error {
return m.specManager.NewScaleOutLock(name, newPart)
})
} else {
builder.Func("Start new instances", func(ctx context.Context) error {
return operator.Start(ctx,
newPart,
operator.Options{
OptTimeout: gOpt.OptTimeout,
Operation: operator.ScaleOutOperation,
},
false, /* restoreLeader */
tlsCfg,
)
}).
ParallelStep("+ Refresh components conifgs", gOpt.Force, refreshConfigTasks...).
ParallelStep("+ Reload prometheus and grafana", gOpt.Force,
buildReloadPromAndGrafanaTasks(metadata.GetTopology(), m.logger, gOpt)...)
}
// remove scale-out file lock
if opt.Stage2 {
builder.Func("Release Scale-Out File Lock", func(ctx context.Context) error {
return m.specManager.ReleaseScaleOutLock(name)
})
}
if final != nil {
final(builder, name, metadata, gOpt)
}
return builder.Build(), nil
}
// buildScaleConfigTasks generates certificate for instance and transfers it to the server
func buildScaleConfigTasks(
m *Manager,
name string,
topo spec.Topology,
newPart spec.Topology,
base *spec.BaseMeta,
gOpt operator.Options,
p *tui.SSHConnectionProps) []*task.StepDisplay {
var (
scaleConfigTasks []*task.StepDisplay // tasks which are used to copy certificate to remote host
)
// copy certificate to remote host
newPart.IterInstance(func(inst spec.Instance) {
deployDir := spec.Abs(base.User, inst.DeployDir())
// data dir would be empty for components which don't need it
dataDirs := spec.MultiDirAbs(base.User, inst.DataDir())
// log dir will always be with values, but might not used by the component
logDir := spec.Abs(base.User, inst.LogDir())
t := task.NewSimpleUerSSH(m.logger, inst.GetManageHost(), inst.GetSSHPort(), base.User, gOpt, p, topo.BaseTopo().GlobalOptions.SSHType).
ScaleConfig(
name,
base.Version,
m.specManager,
topo,
inst,
base.User,
meta.DirPaths{
Deploy: deployDir,
Data: dataDirs,
Log: logDir,
},
).BuildAsStep(fmt.Sprintf(" - Generate scale-out config %s -> %s", inst.ComponentName(), inst.ID()))
scaleConfigTasks = append(scaleConfigTasks, t)
})
return scaleConfigTasks
}
type hostInfo struct {
ssh int // ssh port of host
os string // operating system
arch string // cpu architecture
// vendor string
}
func buildMonitoredDeployTask(
m *Manager,
uniqueHosts map[string]hostInfo, // host -> ssh-port, os, arch
noAgentHosts set.StringSet, // hosts that do not deploy monitor agents
globalOptions *spec.GlobalOptions,
monitoredOptions *spec.MonitoredOptions,
gOpt operator.Options,
p *tui.SSHConnectionProps,
) (downloadCompTasks []*task.StepDisplay, deployCompTasks []*task.StepDisplay, err error) {
if monitoredOptions == nil {
return
}
uniqueCompOSArch := set.NewStringSet()
// monitoring agents
for _, comp := range []string{spec.ComponentNodeExporter, spec.ComponentBlackboxExporter} {
version := monitoredOptions.NodeExporterVersion
if comp == spec.ComponentBlackboxExporter {
version = monitoredOptions.BlackboxExporterVersion
}
for host, info := range uniqueHosts {
// skip deploying monitoring agents if the instance is marked so
if noAgentHosts.Exist(host) {
continue
}
// populate unique comp-os-arch set
key := fmt.Sprintf("%s-%s-%s", comp, info.os, info.arch)
if found := uniqueCompOSArch.Exist(key); !found {
uniqueCompOSArch.Insert(key)
downloadCompTasks = append(downloadCompTasks, task.NewBuilder(m.logger).
Download(comp, info.os, info.arch, version).
BuildAsStep(fmt.Sprintf(" - Download %s:%s (%s/%s)", comp, version, info.os, info.arch)))
}
deployDir := spec.Abs(globalOptions.User, monitoredOptions.DeployDir)
// data dir would be empty for components which don't need it
dataDir := monitoredOptions.DataDir
// the default data_dir is relative to deploy_dir
if dataDir != "" && !strings.HasPrefix(dataDir, "/") {
dataDir = filepath.Join(deployDir, dataDir)
}
// log dir will always be with values, but might not used by the component
logDir := spec.Abs(globalOptions.User, monitoredOptions.LogDir)
deployDirs := []string{
deployDir,
dataDir,
logDir,
filepath.Join(deployDir, "bin"),
filepath.Join(deployDir, "conf"),
filepath.Join(deployDir, "scripts"),
}
// Deploy component
tb := task.NewSimpleUerSSH(m.logger, host, info.ssh, globalOptions.User, gOpt, p, globalOptions.SSHType).
Mkdir(globalOptions.User, host, deployDirs...).
CopyComponent(
comp,
info.os,
info.arch,
version,
"",
host,
deployDir,
)
deployCompTasks = append(deployCompTasks, tb.BuildAsStep(fmt.Sprintf(" - Deploy %s -> %s", comp, host)))
}
}
return
}
// buildMonitoredCertificateTasks generates certificate for instance and transfers it to the server
func buildMonitoredCertificateTasks(
m *Manager,
name string,
uniqueHosts map[string]hostInfo, // host -> ssh-port, os, arch
noAgentHosts set.StringSet, // hosts that do not deploy monitor agents
globalOptions *spec.GlobalOptions,
monitoredOptions *spec.MonitoredOptions,
gOpt operator.Options,
p *tui.SSHConnectionProps,
) ([]*task.StepDisplay, error) {
var certificateTasks []*task.StepDisplay
if monitoredOptions == nil {
return certificateTasks, nil
}
if globalOptions.TLSEnabled {
// monitoring agents
for _, comp := range []string{spec.ComponentNodeExporter, spec.ComponentBlackboxExporter} {
for host, info := range uniqueHosts {
// skip deploying monitoring agents if the instance is marked so
if noAgentHosts.Exist(host) {
continue
}
deployDir := spec.Abs(globalOptions.User, monitoredOptions.DeployDir)
tlsDir := filepath.Join(deployDir, spec.TLSCertKeyDir)
// Deploy component
tb := task.NewSimpleUerSSH(m.logger, host, info.ssh, globalOptions.User, gOpt, p, globalOptions.SSHType).
Mkdir(globalOptions.User, host, tlsDir)
if comp == spec.ComponentBlackboxExporter {
ca, innerr := crypto.ReadCA(
name,
m.specManager.Path(name, spec.TLSCertKeyDir, spec.TLSCACert),
m.specManager.Path(name, spec.TLSCertKeyDir, spec.TLSCAKey),
)
if innerr != nil {
return certificateTasks, innerr
}
tb = tb.TLSCert(
host,
spec.ComponentBlackboxExporter,
spec.ComponentBlackboxExporter,
monitoredOptions.BlackboxExporterPort,
ca,
meta.DirPaths{
Deploy: deployDir,
Cache: m.specManager.Path(name, spec.TempConfigPath),
})
}
certificateTasks = append(certificateTasks, tb.BuildAsStep(fmt.Sprintf(" - Generate certificate %s -> %s", comp, host)))
}
}
}
return certificateTasks, nil
}
func buildInitMonitoredConfigTasks(
specManager *spec.SpecManager,
name string,
uniqueHosts map[string]hostInfo, // host -> ssh-port, os, arch
noAgentHosts set.StringSet,
globalOptions spec.GlobalOptions,
monitoredOptions *spec.MonitoredOptions,
logger *logprinter.Logger,
sshTimeout, exeTimeout uint64,
gOpt operator.Options,
p *tui.SSHConnectionProps,
) []*task.StepDisplay {
if monitoredOptions == nil {
return nil
}
tasks := []*task.StepDisplay{}
// monitoring agents
for _, comp := range []string{spec.ComponentNodeExporter, spec.ComponentBlackboxExporter} {
for host, info := range uniqueHosts {
if noAgentHosts.Exist(host) {
continue
}
deployDir := spec.Abs(globalOptions.User, monitoredOptions.DeployDir)
// data dir would be empty for components which don't need it
dataDir := monitoredOptions.DataDir
// the default data_dir is relative to deploy_dir
if dataDir != "" && !strings.HasPrefix(dataDir, "/") {
dataDir = filepath.Join(deployDir, dataDir)
}
// log dir will always be with values, but might not used by the component
logDir := spec.Abs(globalOptions.User, monitoredOptions.LogDir)
// Generate configs
t := task.NewSimpleUerSSH(logger, host, info.ssh, globalOptions.User, gOpt, p, globalOptions.SSHType).
MonitoredConfig(
name,
comp,
host,
globalOptions.ResourceControl,
monitoredOptions,
globalOptions.User,
globalOptions.TLSEnabled,
meta.DirPaths{
Deploy: deployDir,
Data: []string{dataDir},
Log: logDir,
Cache: specManager.Path(name, spec.TempConfigPath),
},
).
BuildAsStep(fmt.Sprintf(" - Generate config %s -> %s", comp, host))
tasks = append(tasks, t)
}
}
return tasks
}
func buildInitConfigTasks(
m *Manager,
name string,
topo spec.Topology,
base *spec.BaseMeta,
gOpt operator.Options,
nodes []string,
) ([]*task.StepDisplay, bool) {
var tasks []*task.StepDisplay
hasImported := false
deletedNodes := set.NewStringSet(nodes...)
topo.IterInstance(func(instance spec.Instance) {
if deletedNodes.Exist(instance.ID()) {
return
}
compName := instance.ComponentName()
deployDir := spec.Abs(base.User, instance.DeployDir())
// data dir would be empty for components which don't need it
dataDirs := spec.MultiDirAbs(base.User, instance.DataDir())
// log dir will always be with values, but might not used by the component
logDir := spec.Abs(base.User, instance.LogDir())
// Download and copy the latest component to remote if the cluster is imported from Ansible
tb := task.NewBuilder(m.logger)
if instance.IsImported() {
version := instance.CalculateVersion(base.Version)
switch compName {
case spec.ComponentGrafana, spec.ComponentPrometheus, spec.ComponentAlertmanager:
tb.Download(compName, instance.OS(), instance.Arch(), version).
CopyComponent(
compName,
instance.OS(),
instance.Arch(),
version,
"", // use default srcPath
instance.GetManageHost(),
deployDir,
)
}
hasImported = true
}
t := tb.
InitConfig(
name,
base.Version,
m.specManager,
instance,
base.User,
gOpt.IgnoreConfigCheck,
meta.DirPaths{
Deploy: deployDir,
Data: dataDirs,
Log: logDir,
Cache: m.specManager.Path(name, spec.TempConfigPath),
},
).
BuildAsStep(fmt.Sprintf(" - Generate config %s -> %s", compName, instance.ID()))
tasks = append(tasks, t)
})
return tasks, hasImported
}
// buildDownloadCompTasks build download component tasks
func buildDownloadCompTasks(
clusterVersion string,
topo spec.Topology,
logger *logprinter.Logger,
gOpt operator.Options,
) []*task.StepDisplay {
var tasks []*task.StepDisplay
uniqueTaskList := set.NewStringSet()
topo.IterInstance(func(inst spec.Instance) {
key := fmt.Sprintf("%s-%s-%s", inst.ComponentSource(), inst.OS(), inst.Arch())
if found := uniqueTaskList.Exist(key); !found {
uniqueTaskList.Insert(key)
// we don't set version for tispark, so the lastest tispark will be used
var version string
if inst.ComponentName() == spec.ComponentTiSpark {
// download spark as dependency of tispark
tasks = append(tasks, buildDownloadSparkTask(inst, logger, gOpt))
} else {
version = inst.CalculateVersion(clusterVersion)
}
t := task.NewBuilder(logger).
Download(inst.ComponentSource(), inst.OS(), inst.Arch(), version).
BuildAsStep(fmt.Sprintf(" - Download %s:%s (%s/%s)",
inst.ComponentSource(), version, inst.OS(), inst.Arch()))
tasks = append(tasks, t)
}
})
return tasks
}
// buildDownloadSparkTask build download task for spark, which is a dependency of tispark
// FIXME: this is a hack and should be replaced by dependency handling in manifest processing
func buildDownloadSparkTask(inst spec.Instance, logger *logprinter.Logger, gOpt operator.Options) *task.StepDisplay {
return task.NewBuilder(logger).
Download(spec.ComponentSpark, inst.OS(), inst.Arch(), "").
BuildAsStep(fmt.Sprintf(" - Download %s: (%s/%s)",
spec.ComponentSpark, inst.OS(), inst.Arch()))
}
// buildTLSTask create enable/disable tls task
func buildTLSTask(
m *Manager,
name string,
metadata spec.Metadata,
gOpt operator.Options,
reloadCertificate bool,
p *tui.SSHConnectionProps,
delFileMap map[string]set.StringSet,
) (task.Task, error) {
topo := metadata.GetTopology()
base := metadata.GetBaseMeta()
// load certificate file
if topo.BaseTopo().GlobalOptions.TLSEnabled {
tlsDir := m.specManager.Path(name, spec.TLSCertKeyDir)
m.logger.Infof("Generate certificate: %s", color.YellowString(tlsDir))
if err := m.loadCertificate(name, topo.BaseTopo().GlobalOptions, reloadCertificate); err != nil {
return nil, err
}
}
certificateTasks, err := buildCertificateTasks(m, name, topo, base, gOpt, p)
if err != nil {
return nil, err
}
refreshConfigTasks, hasImported := buildInitConfigTasks(m, name, topo, base, gOpt, nil)
// handle dir scheme changes
if hasImported {
if err := spec.HandleImportPathMigration(name); err != nil {
return task.NewBuilder(m.logger).Build(), err
}
}
// monitor
uniqueHosts, noAgentHosts := getMonitorHosts(topo)
moniterCertificateTasks, err := buildMonitoredCertificateTasks(
m,
name,
uniqueHosts,
noAgentHosts,
topo.BaseTopo().GlobalOptions,
topo.GetMonitoredOptions(),
gOpt,
p,
)
if err != nil {
return nil, err
}
monitorConfigTasks := buildInitMonitoredConfigTasks(
m.specManager,
name,
uniqueHosts,
noAgentHosts,
*topo.BaseTopo().GlobalOptions,
topo.GetMonitoredOptions(),
m.logger,
gOpt.SSHTimeout,
gOpt.OptTimeout,
gOpt,
p,
)
builder, err := m.sshTaskBuilder(name, topo, base.User, gOpt)
if err != nil {
return nil, err
}
builder.
ParallelStep("+ Copy certificate to remote host", gOpt.Force, certificateTasks...).
ParallelStep("+ Copy monitor certificate to remote host", gOpt.Force, moniterCertificateTasks...).
ParallelStep("+ Refresh instance configs", gOpt.Force, refreshConfigTasks...).
ParallelStep("+ Refresh monitor configs", gOpt.Force, monitorConfigTasks...).
Func("Save meta", func(_ context.Context) error {
return m.specManager.SaveMeta(name, metadata)
})
// cleanup tls files only in tls disable
if !topo.BaseTopo().GlobalOptions.TLSEnabled {
builder.Func("Cleanup TLS files", func(ctx context.Context) error {
return operator.CleanupComponent(ctx, delFileMap)
})
}
tlsCfg, err := topo.TLSConfig(m.specManager.Path(name, spec.TLSCertKeyDir))
if err != nil {
return nil, err
}
builder.
Func("Restart Cluster", func(ctx context.Context) error {
return operator.Restart(ctx, topo, gOpt, tlsCfg)
}).
Func("Reload PD Members", func(ctx context.Context) error {
return operator.SetPDMember(ctx, name, topo.BaseTopo().GlobalOptions.TLSEnabled, tlsCfg, metadata)
})
return builder.Build(), nil
}
// buildCertificateTasks generates certificate for instance and transfers it to the server
func buildCertificateTasks(
m *Manager,
name string,
topo spec.Topology,
base *spec.BaseMeta,
gOpt operator.Options,
p *tui.SSHConnectionProps) ([]*task.StepDisplay, error) {
var (
iterErr error
certificateTasks []*task.StepDisplay // tasks which are used to copy certificate to remote host
)
if topo.BaseTopo().GlobalOptions.TLSEnabled {
// copy certificate to remote host
topo.IterInstance(func(inst spec.Instance) {
deployDir := spec.Abs(base.User, inst.DeployDir())
tlsDir := filepath.Join(deployDir, spec.TLSCertKeyDir)
tb := task.NewSimpleUerSSH(m.logger, inst.GetManageHost(), inst.GetSSHPort(), base.User, gOpt, p, topo.BaseTopo().GlobalOptions.SSHType).
Mkdir(base.User, inst.GetManageHost(), deployDir, tlsDir)
ca, err := crypto.ReadCA(
name,
m.specManager.Path(name, spec.TLSCertKeyDir, spec.TLSCACert),
m.specManager.Path(name, spec.TLSCertKeyDir, spec.TLSCAKey),
)
if err != nil {
iterErr = err
return
}
t := tb.TLSCert(
inst.GetHost(),
inst.ComponentName(),
inst.Role(),
inst.GetMainPort(),
ca,
meta.DirPaths{
Deploy: deployDir,
Cache: m.specManager.Path(name, spec.TempConfigPath),
}).
BuildAsStep(fmt.Sprintf(" - Generate certificate %s -> %s", inst.ComponentName(), inst.ID()))
certificateTasks = append(certificateTasks, t)
})
}
return certificateTasks, iterErr
}