forked from percona/pmm-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
168 lines (149 loc) · 4.41 KB
/
main.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
// pmm-update
// Copyright (C) 2019 Percona LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package main
import (
"context"
"encoding/json"
"flag"
"log"
"os"
"os/signal"
"github.com/percona/pmm/version"
"github.com/sirupsen/logrus"
"golang.org/x/sys/unix"
"github.com/percona/pmm-update/pkg/ansible"
"github.com/percona/pmm-update/pkg/yum"
)
func installed(ctx context.Context) {
v, err := yum.Installed(ctx, "pmm-update")
if err != nil {
logrus.Tracef("%+v", err)
logrus.Fatalf("Installed failed: %s", err)
}
if err = json.NewEncoder(os.Stdout).Encode(v); err != nil {
logrus.Fatal(err)
}
}
func check(ctx context.Context) {
v, err := yum.Check(ctx, "pmm-update")
if err != nil {
logrus.Tracef("%+v", err)
logrus.Fatalf("Check failed: %s", err)
}
if err = json.NewEncoder(os.Stdout).Encode(v); err != nil {
logrus.Fatal(err)
}
}
func performStage1SelfUpdate(ctx context.Context) {
const name = "pmm-update"
v, err := yum.Installed(ctx, name)
if err != nil {
logrus.Tracef("%+v", err)
logrus.Fatalf("Installed failed before update: %s", err)
}
before := v.Installed
if err = yum.Update(ctx, name); err != nil {
logrus.Tracef("%+v", err)
logrus.Fatalf("Update failed: %s", err)
}
v, err = yum.Installed(ctx, name)
if err != nil {
logrus.Tracef("%+v", err)
logrus.Fatalf("Installed failed after update: %s", err)
}
after := v.Installed
logrus.Infof("%s:\nbefore update = %+v\n after update = %+v", name, before, after)
if before.FullVersion != after.FullVersion {
// exit with non-zero code to let supervisord restart `pmm-update -perform` from the start
logrus.Info("Version changed, exiting.")
os.Exit(42)
}
logrus.Info("Version did not change.")
}
func performStage2Ansible(ctx context.Context, playbook string, opts *ansible.RunPlaybookOpts) {
err := ansible.RunPlaybook(ctx, playbook, opts)
if err != nil {
logrus.Fatalf("RunPlaybook failed: %s", err)
}
}
func perform(ctx context.Context, playbook string, opts *ansible.RunPlaybookOpts) {
performStage1SelfUpdate(ctx)
performStage2Ansible(ctx, playbook, opts)
// pmm-managed will still wait for dashboard-upgrade to finish;
// that string is expected by various automated tests.
logrus.Info("Waiting for Grafana dashboards update to finish...")
}
// Flags have to be global variables for maincover_test.go to work.
//nolint:gochecknoglobals
var (
installedF = flag.Bool("installed", false, "Return installed version")
checkF = flag.Bool("check", false, "Check for updates")
performF = flag.Bool("perform", false, "Perform update")
playbookF = flag.String("playbook", "", "Ansible playbook for -perform")
debugF = flag.Bool("debug", false, "Enable debug logging")
traceF = flag.Bool("trace", false, "Enable trace logging")
)
func main() {
log.SetFlags(0)
log.Print(version.FullInfo())
log.SetPrefix("stdlog: ")
flag.Parse()
if *debugF {
logrus.SetLevel(logrus.DebugLevel)
}
if *traceF {
*debugF = *traceF
logrus.SetLevel(logrus.TraceLevel)
logrus.SetReportCaller(true) // https://github.com/sirupsen/logrus/issues/954
}
var modes int
if *installedF {
modes++
}
if *checkF {
modes++
}
if *performF {
modes++
}
if modes != 1 {
logrus.Fatalf("Please select a mode: -current, -check, or -perform.")
}
// handle termination signals
ctx, cancel := context.WithCancel(context.Background())
signals := make(chan os.Signal, 1)
signal.Notify(signals, unix.SIGTERM, unix.SIGINT)
go func() {
s := <-signals
signal.Stop(signals)
logrus.Warnf("Got %s, shutting down...", unix.SignalName(s.(unix.Signal)))
cancel()
}()
switch {
case *installedF:
installed(ctx)
case *checkF:
check(ctx)
case *performF:
if *playbookF == "" {
logrus.Fatalf("-playbook flag must be set.")
}
perform(ctx, *playbookF, &ansible.RunPlaybookOpts{
Debug: *debugF,
Trace: *traceF,
})
}
}