forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
228 lines (208 loc) · 6.27 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
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 main
import (
"fmt"
"log"
"net/http"
_ "net/http/pprof"
"os"
"path/filepath"
"github.com/docker/docker/pkg/reexec"
"github.com/ehazlett/simplelog"
_ "github.com/rancher/norman/controller"
"github.com/rancher/norman/pkg/kwrapper/k8s"
"github.com/rancher/rancher/pkg/data/management"
"github.com/rancher/rancher/pkg/logserver"
"github.com/rancher/rancher/pkg/rancher"
"github.com/rancher/rancher/pkg/version"
"github.com/rancher/wrangler/pkg/signals"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
)
var (
profileAddress = "localhost:6060"
kubeConfig string
)
func main() {
management.RegisterPasswordResetCommand()
management.RegisterEnsureDefaultAdminCommand()
if reexec.Init() {
return
}
os.Unsetenv("SSH_AUTH_SOCK")
os.Unsetenv("SSH_AGENT_PID")
if dm := os.Getenv("CATTLE_DEV_MODE"); dm != "" {
if dir, err := os.Getwd(); err == nil {
dmPath := filepath.Join(dir, "management-state", "bin")
os.MkdirAll(dmPath, 0700)
newPath := fmt.Sprintf("%s%s%s", dmPath, string(os.PathListSeparator), os.Getenv("PATH"))
os.Setenv("PATH", newPath)
}
} else {
newPath := fmt.Sprintf("%s%s%s", "/opt/drivers/management-state/bin", string(os.PathListSeparator), os.Getenv("PATH"))
os.Setenv("PATH", newPath)
}
var config rancher.Options
app := cli.NewApp()
app.Version = version.FriendlyVersion()
app.Usage = "Complete container management platform"
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "kubeconfig",
Usage: "Kube config for accessing k8s cluster",
EnvVar: "KUBECONFIG",
Destination: &kubeConfig,
},
cli.BoolFlag{
Name: "debug",
Usage: "Enable debug logs",
Destination: &config.Debug,
},
cli.BoolFlag{
Name: "trace",
Usage: "Enable trace logs",
Destination: &config.Trace,
},
cli.StringFlag{
Name: "add-local",
Usage: "Add local cluster (true, false)",
Value: "true",
Destination: &config.AddLocal,
Hidden: true,
},
cli.IntFlag{
Name: "http-listen-port",
Usage: "HTTP listen port",
Value: 8080,
Destination: &config.HTTPListenPort,
},
cli.IntFlag{
Name: "https-listen-port",
Usage: "HTTPS listen port",
Value: 8443,
Destination: &config.HTTPSListenPort,
},
cli.StringFlag{
Name: "k8s-mode",
Usage: "Mode to run or access k8s API server for management API (embedded, external, auto)",
Value: "auto",
Destination: &config.K8sMode,
},
cli.StringFlag{
Name: "log-format",
Usage: "Log formatter used (json, text, simple)",
Value: "simple",
},
cli.StringSliceFlag{
Name: "acme-domain",
EnvVar: "ACME_DOMAIN",
Usage: "Domain to register with LetsEncrypt",
Value: &config.ACMEDomains,
},
cli.BoolFlag{
Name: "no-cacerts",
Usage: "Skip CA certs population in settings when set to true",
Destination: &config.NoCACerts,
},
cli.StringFlag{
Name: "audit-log-path",
EnvVar: "AUDIT_LOG_PATH",
Value: "/var/log/auditlog/rancher-api-audit.log",
Usage: "Log path for Rancher Server API. Default path is /var/log/auditlog/rancher-api-audit.log",
Destination: &config.AuditLogPath,
},
cli.IntFlag{
Name: "audit-log-maxage",
Value: 10,
EnvVar: "AUDIT_LOG_MAXAGE",
Usage: "Defined the maximum number of days to retain old audit log files",
Destination: &config.AuditLogMaxage,
},
cli.IntFlag{
Name: "audit-log-maxbackup",
Value: 10,
EnvVar: "AUDIT_LOG_MAXBACKUP",
Usage: "Defines the maximum number of audit log files to retain",
Destination: &config.AuditLogMaxbackup,
},
cli.IntFlag{
Name: "audit-log-maxsize",
Value: 100,
EnvVar: "AUDIT_LOG_MAXSIZE",
Usage: "Defines the maximum size in megabytes of the audit log file before it gets rotated, default size is 100M",
Destination: &config.AuditLogMaxsize,
},
cli.IntFlag{
Name: "audit-level",
Value: 0,
EnvVar: "AUDIT_LEVEL",
Usage: "Audit log level: 0 - disable audit log, 1 - log event metadata, 2 - log event metadata and request body, 3 - log event metadata, request body and response body",
Destination: &config.AuditLevel,
},
cli.StringFlag{
Name: "profile-listen-address",
Value: "127.0.0.1:6060",
Usage: "Address to listen on for profiling",
Destination: &profileAddress,
},
cli.StringFlag{
Name: "features",
EnvVar: "CATTLE_FEATURES",
Value: "",
Usage: "Declare specific feature values on start up. Example: \"kontainer-driver=true\" - kontainer driver feature will be enabled despite false default value",
Destination: &config.Features,
},
}
app.Action = func(c *cli.Context) error {
// enable profiler
if profileAddress != "" {
go func() {
log.Println(http.ListenAndServe(profileAddress, nil))
}()
}
initLogs(c, config)
return run(c, config)
}
app.ExitErrHandler = func(c *cli.Context, err error) {
logrus.Fatal(err)
}
app.Run(os.Args)
}
func initLogs(c *cli.Context, cfg rancher.Options) {
switch c.String("log-format") {
case "simple":
logrus.SetFormatter(&simplelog.StandardFormatter{})
case "text":
logrus.SetFormatter(&logrus.TextFormatter{})
case "json":
logrus.SetFormatter(&logrus.JSONFormatter{})
}
logrus.SetOutput(os.Stdout)
if cfg.Debug {
logrus.SetLevel(logrus.DebugLevel)
logrus.Debugf("Loglevel set to [%v]", logrus.DebugLevel)
}
if cfg.Trace {
logrus.SetLevel(logrus.TraceLevel)
logrus.Tracef("Loglevel set to [%v]", logrus.TraceLevel)
}
logserver.StartServerWithDefaults()
}
func run(cli *cli.Context, cfg rancher.Options) error {
logrus.Infof("Rancher version %s is starting", version.FriendlyVersion())
logrus.Infof("Rancher arguments %+v", cfg)
ctx := signals.SetupSignalContext()
if cfg.AddLocal != "true" && cfg.AddLocal != "auto" {
logrus.Fatal("add-local flag must be set to 'true', see Rancher 2.5.0 release notes for more information")
}
embedded, clientConfig, err := k8s.GetConfig(ctx, cfg.K8sMode, kubeConfig)
if err != nil {
return err
}
cfg.Embedded = embedded
os.Unsetenv("KUBECONFIG")
server, err := rancher.New(ctx, clientConfig, &cfg)
if err != nil {
return err
}
return server.ListenAndServe(ctx)
}