Skip to content

Commit ac6f069

Browse files
author
Wei Tie
committed
Refactor netplugin CLI
This commit refactors netplugin CLI, it uses "github.com/urfave/cli" now in order to provide configuration from CLI and environment vars, and provides easy way to load from config files too. In details, this commit introduced: 1. New configs for netmode and fwdmode settings, which needs to match what in etcd; 2. Improved validation for all CLI/ENV inputs before starting netplugin; 3. Removed requirement of running as root user, as long as the running user has privilege to run ovs and most networking related CLIs, is good enough; 4. Option "-cluster-store" has been reworked, replaced by "--etcd-endpoints" and "--consul-endpoints", so that it will be easy to enable https endpoints and adding more than one endpoints for HA; 5. Option "-config" which reads configuration from stdin has been removed, it will soon be replaced by reading configuration from a real file instead; 6. Option "-debug" has been replaced by "--log-level", this will allow user to set loglevel to higher level if doesn't want to use INFO level; 7. Option "-syslog" has been replaced by "--use-syslog" and "--syslog-url", this will make it more clear on syslog settings and endpoint. 8. Removed Option "-net-driver", because netplugin currently only supports OVS, will add it back when there are second backend type. 9. Rework state driver and objdb client, make them more flexible to support multi-endpoints model of etcd and consul, and http/https as URL schema. 10. Updated testing cases in react of all above changes. Signed-off-by: Wei Tie <[email protected]>
1 parent 6b5a39e commit ac6f069

File tree

17 files changed

+367
-247
lines changed

17 files changed

+367
-247
lines changed

core/error.go

+4-10
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ package core
1717

1818
import (
1919
"fmt"
20-
"os"
2120
"path"
2221
"runtime"
2322
"strings"
@@ -38,17 +37,12 @@ type Error struct {
3837
// Error() allows *core.Error to present the `error` interface.
3938
func (e *Error) Error() string {
4039
var ret string
40+
ret = e.desc + "\n"
4141

42-
if os.Getenv("CONTIV_TRACE") != "" {
43-
ret = e.desc + "\n"
44-
45-
for _, stack := range e.stack {
46-
ret += fmt.Sprintf("%s [%s %d]\n", stack.fun, stack.file, stack.line)
47-
}
48-
} else {
49-
ret = fmt.Sprintf("%s [%s %s %d]", e.desc, e.stack[0].fun, e.stack[0].file, e.stack[0].line)
42+
// TODO: use github.com/pkg/errors
43+
for _, stack := range e.stack {
44+
ret += fmt.Sprintf("%s [%s %d]\n", stack.fun, stack.file, stack.line)
5045
}
51-
5246
return ret
5347
}
5448

core/error_test.go

+3-16
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package core
22

33
import (
44
"fmt"
5-
"os"
65
"strings"
76
"testing"
87
)
@@ -12,12 +11,11 @@ func TestErrorStringFormat(t *testing.T) {
1211
e := Errorf("%s", refStr)
1312

1413
fileName := "error_test.go"
15-
lineNum := 12 // line number where error was formed
14+
lineNum := 11 // line number where error was formed
1615
funcName := "github.com/contiv/netplugin/core.TestErrorStringFormat"
1716

18-
expectedStr := fmt.Sprintf("%s [%s %s %d]", refStr, funcName, fileName, lineNum)
19-
20-
if e.Error() != expectedStr {
17+
expectedStr := fmt.Sprintf("%s [%s %d]", funcName, fileName, lineNum)
18+
if errMsg := strings.Split(e.Error(), "\n"); errMsg[0] != refStr || errMsg[1] != expectedStr {
2119
t.Fatalf("error string mismatch. Expected: %q, got %q", expectedStr,
2220
e.Error())
2321
}
@@ -35,17 +33,6 @@ func TestErrorStackTrace(t *testing.T) {
3533
t.Fatal("Description did not match provided")
3634
}
3735

38-
fileName := "error_test.go"
39-
lineNum := 27 // line number where error was formed
40-
funcName := "github.com/contiv/netplugin/core.getError"
41-
42-
expectedStr := fmt.Sprintf("%s [%s %s %d]", msg, funcName, fileName, lineNum)
43-
44-
if e.Error() != expectedStr {
45-
t.Fatalf("Error message yielded an incorrect result with CONTIV_TRACE unset: %s", e.Error())
46-
}
47-
48-
os.Setenv("CONTIV_TRACE", "1")
4936
if e.Error() == "an error\n" {
5037
t.Fatal("Error message did not yield stack trace with CONTIV_TRACE set")
5138
}

netplugin/agent/agent.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func NewAgent(pluginConfig *plugin.Config) *Agent {
5050
netPlugin := &plugin.NetPlugin{}
5151

5252
// init cluster state
53-
err := cluster.Init(opts.DbURL)
53+
err := cluster.Init(pluginConfig.Drivers.State, []string{opts.DbURL})
5454
if err != nil {
5555
log.Fatalf("Error initializing cluster. Err: %v", err)
5656
}

netplugin/cluster/cluster.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,11 +321,11 @@ func GetLocalAddr() (string, error) {
321321
}
322322

323323
// Init initializes the cluster module
324-
func Init(storeURL string) error {
324+
func Init(storeDriver string, storeURLs []string) error {
325325
var err error
326326

327327
// Create an objdb client
328-
ObjdbClient, err = objdb.NewClient(storeURL)
328+
ObjdbClient, err = objdb.InitClient(storeDriver, storeURLs)
329329

330330
return err
331331
}

0 commit comments

Comments
 (0)