-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
50 lines (39 loc) · 1.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
package main
import (
"fmt"
"github.com/simplecontainer/client/pkg/bootstrap"
"github.com/simplecontainer/client/pkg/commands"
_ "github.com/simplecontainer/client/pkg/commands"
"github.com/simplecontainer/client/pkg/configuration"
"github.com/simplecontainer/client/pkg/context"
"github.com/simplecontainer/client/pkg/logger"
"github.com/simplecontainer/client/pkg/manager"
"github.com/simplecontainer/client/pkg/startup"
"github.com/simplecontainer/smr/pkg/static"
"log"
"os"
)
func main() {
config := configuration.NewConfig()
startup.Load(config)
logLevel := os.Getenv("LOG_LEVEL")
if logLevel == "" {
logLevel = static.DEFAULT_LOG_LEVEL
}
managerObj := &manager.Manager{}
managerObj.VersionClient = SMR_VERSION
managerObj.Configuration = config
bootstrap.CreateDirectoryTree(managerObj.Configuration.Environment.ClientDirectory)
logger.Log = logger.NewLogger(config.Environment.LogsDirectory, logLevel)
logger.LogFlannel = logger.NewLoggerFlannel(config.Environment.LogsDirectory, logLevel)
f, err := os.OpenFile(fmt.Sprintf("%s/flannel.log", config.Environment.LogsDirectory), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
if err != nil {
log.Fatalf("error opening file: %v", err)
}
defer f.Close()
log.SetOutput(f)
managerObj.Context = context.NewContext(managerObj.Configuration.Environment.ClientDirectory)
managerObj.Context.LoadContext()
commands.PreloadCommands()
commands.Run(managerObj)
}