-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (45 loc) · 944 Bytes
/
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
package main
import (
"os"
log "github.com/Sirupsen/logrus"
"github.com/docker/go-plugins-helpers/network"
"github.com/huikang/libnetwork-ovn-plugin/ovn"
"gopkg.in/urfave/cli.v1"
)
const (
version = "0.1"
)
func main() {
app := cli.NewApp()
app.Name = "Libnetwork OVN plugin"
app.Usage = "./libnetwork-ovn-plugin"
app.Version = version
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "debug, d",
Usage: "enabling debugging",
},
cli.StringFlag{
Name: "remote, r",
Value: ovn.Localhost,
Usage: "IP of OVN northound",
},
}
app.Action = pluginServer
app.Run(os.Args)
}
func pluginServer(c *cli.Context) error {
if c.Bool("debug") {
log.SetLevel(log.DebugLevel)
}
nbip := c.GlobalString("remote")
log.Debugf("remote ip [ %s ]", nbip)
// fixme: validate nbip
d, err := ovn.NewDriver(nbip)
if err != nil {
panic(err)
}
h := network.NewHandler(d)
h.ServeUnix(ovn.DriverName, 0)
return nil
}