-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcli.go
116 lines (105 loc) · 2.49 KB
/
cli.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
package main
import (
"fmt"
"os"
"github.com/projecteru2/cli/cmd/core"
"github.com/projecteru2/cli/cmd/image"
"github.com/projecteru2/cli/cmd/lambda"
"github.com/projecteru2/cli/cmd/network"
"github.com/projecteru2/cli/cmd/node"
"github.com/projecteru2/cli/cmd/pod"
"github.com/projecteru2/cli/cmd/status"
"github.com/projecteru2/cli/cmd/workload"
"github.com/projecteru2/cli/describe"
"github.com/projecteru2/cli/version"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
var debug bool
func setupLog(l string) error {
logrus.SetOutput(os.Stderr)
level, err := logrus.ParseLevel(l)
if err != nil {
return err
}
logrus.SetLevel(level)
formatter := &logrus.TextFormatter{
TimestampFormat: "2006-01-02 15:04:05",
FullTimestamp: true,
}
logrus.SetFormatter(formatter)
return nil
}
func main() {
cli.VersionPrinter = func(c *cli.Context) {
fmt.Print(version.String())
}
app := &cli.App{
Name: version.NAME,
Usage: "control eru in shell",
Version: version.VERSION,
DisableSliceFlagSeparator: true,
Commands: []*cli.Command{
core.Command(),
image.Command(),
lambda.Command(),
network.Command(),
node.Command(),
pod.Command(),
status.Command(),
workload.Command(),
},
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "debug",
Usage: "enable debug",
Aliases: []string{"d"},
Value: false,
Destination: &debug,
},
&cli.StringFlag{
Name: "eru",
Usage: "eru core address",
Aliases: []string{"e"},
Value: "127.0.0.1:5001",
EnvVars: []string{"ERU"},
},
&cli.StringFlag{
Name: "username",
Usage: "eru core username",
Aliases: []string{"u"},
Value: "",
EnvVars: []string{"ERU_USERNAME"},
},
&cli.StringFlag{
Name: "password",
Usage: "eru core password",
Aliases: []string{"p"},
Value: "",
EnvVars: []string{"ERU_PASSWORD"},
},
&cli.StringFlag{
Name: "output",
Usage: "output format, json / yaml",
Aliases: []string{"o"},
Value: "",
EnvVars: []string{"ERU_OUTPUT_FORMAT"},
Destination: &describe.Format,
},
},
}
var loglevel string
if debug {
loglevel = "DEBUG"
} else {
loglevel = "INFO"
}
if err := setupLog(loglevel); err != nil {
fmt.Printf("Error setup log: %v\n", err)
os.Exit(-1)
}
if err := app.Run(os.Args); err != nil {
fmt.Printf("Error running eru-cli: %v\n", err)
os.Exit(-1)
}
}