Skip to content

Commit 2a117a3

Browse files
committed
fixing k8 init
1 parent 7a3bc31 commit 2a117a3

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

netplugin/agent/agent.go

+6-7
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ func NewAgent(pluginConfig *plugin.Config) *Agent {
6060
log.Fatalf("Error initializing cluster. Err: %v", err)
6161
}
6262

63+
// Init the driver plugins..
64+
err = netPlugin.Init(*pluginConfig)
65+
if err != nil {
66+
log.Fatalf("Failed to initialize the plugin. Error: %s", err)
67+
}
68+
6369
// Initialize appropriate plugin
6470
switch opts.PluginMode {
6571
case "docker":
@@ -73,13 +79,6 @@ func NewAgent(pluginConfig *plugin.Config) *Agent {
7379
default:
7480
log.Fatalf("Unknown plugin mode -- should be docker | kubernetes")
7581
}
76-
77-
// Init the driver plugins..
78-
err = netPlugin.Init(*pluginConfig)
79-
if err != nil {
80-
log.Fatalf("Failed to initialize the plugin. Error: %s", err)
81-
}
82-
8382
// init mesos plugin
8483
mesosplugin.InitPlugin(netPlugin)
8584

0 commit comments

Comments
 (0)