File tree 29 files changed +30
-30
lines changed
29 files changed +30
-30
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
"time"
23
23
24
24
. "github.com/contiv/check"
25
- "github.com/contiv/contivmodel/client"
25
+ "github.com/contiv/netplugin/ contivmodel/client"
26
26
)
27
27
28
28
func Test (t * testing.T ) { TestingT (t ) }
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
"strings"
25
25
26
26
log "github.com/Sirupsen/logrus"
27
- "github.com/contiv/contivmodel/client"
27
+ "github.com/contiv/netplugin/ contivmodel/client"
28
28
"github.com/contiv/netplugin/netmaster/docknet"
29
29
"github.com/contiv/netplugin/netmaster/intent"
30
30
"github.com/contiv/netplugin/netmaster/master"
Original file line number Diff line number Diff line change 9
9
"path/filepath"
10
10
11
11
"github.com/codegangsta/cli"
12
- contivClient "github.com/contiv/contivmodel/client"
12
+ contivClient "github.com/contiv/netplugin/ contivmodel/client"
13
13
)
14
14
15
15
// Config represents the contents of ~/.netctl/config.json
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
"golang.org/x/crypto/ssh/terminal"
18
18
19
19
"github.com/codegangsta/cli"
20
- contivClient "github.com/contiv/contivmodel/client"
20
+ contivClient "github.com/contiv/netplugin/ contivmodel/client"
21
21
"github.com/contiv/netplugin/version"
22
22
)
23
23
Original file line number Diff line number Diff line change 8
8
"github.com/contiv/client-go/pkg/api/v1"
9
9
"github.com/contiv/client-go/pkg/apis/extensions/v1beta1"
10
10
"github.com/contiv/client-go/pkg/watch"
11
- "github.com/contiv/contivmodel/client"
11
+ "github.com/contiv/netplugin/ contivmodel/client"
12
12
"github.com/contiv/netplugin/utils/k8sutils"
13
13
"reflect"
14
14
"strings"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package networkpolicy
3
3
import (
4
4
"fmt"
5
5
log "github.com/Sirupsen/logrus"
6
- "github.com/contiv/contivmodel/client"
6
+ "github.com/contiv/netplugin/ contivmodel/client"
7
7
"github.com/contiv/netplugin/core"
8
8
"github.com/contiv/netplugin/netmaster/mastercfg"
9
9
"github.com/contiv/netplugin/netmaster/objApi"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ limitations under the License.
16
16
package master
17
17
18
18
import (
19
- "github.com/contiv/contivmodel"
19
+ "github.com/contiv/netplugin/ contivmodel"
20
20
"github.com/contiv/netplugin/core"
21
21
"github.com/contiv/netplugin/netmaster/mastercfg"
22
22
"github.com/contiv/netplugin/utils"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
24
24
log "github.com/Sirupsen/logrus"
25
25
26
- "github.com/contiv/contivmodel"
26
+ "github.com/contiv/netplugin/ contivmodel"
27
27
"github.com/contiv/netplugin/core"
28
28
"github.com/contiv/ofnet"
29
29
)
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
"io/ioutil"
26
26
"net/http"
27
27
28
- contivModel "github.com/contiv/contivmodel"
28
+ contivModel "github.com/contiv/netplugin/ contivmodel"
29
29
"github.com/contiv/netplugin/core"
30
30
"github.com/contiv/netplugin/drivers"
31
31
"github.com/contiv/netplugin/netmaster/docknet"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ package objApi
18
18
import (
19
19
"fmt"
20
20
log "github.com/Sirupsen/logrus"
21
- "github.com/contiv/contivmodel"
21
+ "github.com/contiv/netplugin/ contivmodel"
22
22
"github.com/contiv/netplugin/core"
23
23
"github.com/contiv/netplugin/objdb/modeldb"
24
24
)
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"time"
12
12
13
13
log "github.com/Sirupsen/logrus"
14
- "github.com/contiv/contivmodel"
14
+ "github.com/contiv/netplugin/ contivmodel"
15
15
"github.com/contiv/netplugin/core"
16
16
"github.com/contiv/netplugin/netmaster/master"
17
17
"github.com/contiv/netplugin/netmaster/mastercfg"
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ import (
24
24
"testing"
25
25
"time"
26
26
27
- contivModel "github.com/contiv/contivmodel"
28
- "github.com/contiv/contivmodel/client"
27
+ contivModel "github.com/contiv/netplugin/ contivmodel"
28
+ "github.com/contiv/netplugin/ contivmodel/client"
29
29
"github.com/contiv/netplugin/core"
30
30
"github.com/contiv/netplugin/netmaster/gstate"
31
31
"github.com/contiv/netplugin/netmaster/intent"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package integration
17
17
18
18
import (
19
19
log "github.com/Sirupsen/logrus"
20
- "github.com/contiv/contivmodel/client"
20
+ "github.com/contiv/netplugin/ contivmodel/client"
21
21
22
22
. "github.com/contiv/check"
23
23
)
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
20
20
"strings"
21
21
22
22
log "github.com/Sirupsen/logrus"
23
- "github.com/contiv/contivmodel/client"
23
+ "github.com/contiv/netplugin/ contivmodel/client"
24
24
"github.com/contiv/netplugin/netmaster/mastercfg"
25
25
26
26
. "github.com/contiv/check"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
. "testing"
23
23
24
24
log "github.com/Sirupsen/logrus"
25
- "github.com/contiv/contivmodel/client"
25
+ "github.com/contiv/netplugin/ contivmodel/client"
26
26
27
27
. "github.com/contiv/check"
28
28
)
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import (
31
31
32
32
log "github.com/Sirupsen/logrus"
33
33
. "github.com/contiv/check"
34
- "github.com/contiv/contivmodel/client"
34
+ "github.com/contiv/netplugin/ contivmodel/client"
35
35
"github.com/contiv/netplugin/mgmtfn/mesosplugin/cniapi"
36
36
"github.com/docker/docker/api/types"
37
37
"github.com/docker/docker/api/types/container"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ package integration
18
18
import (
19
19
"time"
20
20
21
- "github.com/contiv/contivmodel/client"
21
+ "github.com/contiv/netplugin/ contivmodel/client"
22
22
23
23
. "github.com/contiv/check"
24
24
)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
23
23
log "github.com/Sirupsen/logrus"
24
24
25
- "github.com/contiv/contivmodel"
25
+ "github.com/contiv/netplugin/ contivmodel"
26
26
"github.com/contiv/netplugin/core"
27
27
"github.com/contiv/netplugin/netmaster/daemon"
28
28
"github.com/contiv/netplugin/netplugin/agent"
Original file line number Diff line number Diff line change 6
6
7
7
log "github.com/Sirupsen/logrus"
8
8
. "github.com/contiv/check"
9
- "github.com/contiv/contivmodel/client"
9
+ "github.com/contiv/netplugin/ contivmodel/client"
10
10
)
11
11
12
12
/* TestACIMode does the following:
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/Sirupsen/logrus"
10
10
. "github.com/contiv/check"
11
- "github.com/contiv/contivmodel/client"
11
+ "github.com/contiv/netplugin/ contivmodel/client"
12
12
)
13
13
14
14
func (s * systemtestSuite ) TestBasicStartRemoveContainerVXLAN (c * C ) {
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/Sirupsen/logrus"
10
10
. "github.com/contiv/check"
11
- "github.com/contiv/contivmodel/client"
11
+ "github.com/contiv/netplugin/ contivmodel/client"
12
12
"github.com/contiv/remotessh"
13
13
)
14
14
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package systemtests
2
2
3
3
import (
4
4
. "github.com/contiv/check"
5
- "github.com/contiv/contivmodel/client"
5
+ "github.com/contiv/netplugin/ contivmodel/client"
6
6
"time"
7
7
)
8
8
Original file line number Diff line number Diff line change 7
7
8
8
"github.com/Sirupsen/logrus"
9
9
. "github.com/contiv/check"
10
- "github.com/contiv/contivmodel/client"
10
+ "github.com/contiv/netplugin/ contivmodel/client"
11
11
"github.com/contiv/remotessh"
12
12
)
13
13
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/Sirupsen/logrus"
10
10
. "github.com/contiv/check"
11
- "github.com/contiv/contivmodel/client"
11
+ "github.com/contiv/netplugin/ contivmodel/client"
12
12
)
13
13
14
14
func (s * systemtestSuite ) TestNetprofileBasicUpdateVXLAN (c * C ) {
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/Sirupsen/logrus"
10
10
. "github.com/contiv/check"
11
- "github.com/contiv/contivmodel/client"
11
+ "github.com/contiv/netplugin/ contivmodel/client"
12
12
)
13
13
14
14
func (s * systemtestSuite ) TestInfraNetworkAddDeleteVXLAN (c * C ) {
Original file line number Diff line number Diff line change 7
7
8
8
"github.com/Sirupsen/logrus"
9
9
. "github.com/contiv/check"
10
- "github.com/contiv/contivmodel/client"
10
+ "github.com/contiv/netplugin/ contivmodel/client"
11
11
)
12
12
13
13
func (s * systemtestSuite ) TestPolicyBasicVXLAN (c * C ) {
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/Sirupsen/logrus"
10
10
. "github.com/contiv/check"
11
- "github.com/contiv/contivmodel/client"
11
+ "github.com/contiv/netplugin/ contivmodel/client"
12
12
)
13
13
14
14
var providerIndex int
Original file line number Diff line number Diff line change 9
9
. "github.com/contiv/check"
10
10
11
11
"github.com/Sirupsen/logrus"
12
- "github.com/contiv/contivmodel/client"
12
+ "github.com/contiv/netplugin/ contivmodel/client"
13
13
)
14
14
15
15
func (s * systemtestSuite ) TestTriggerNetpluginUplinkUpgrade (c * C ) {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
16
16
"github.com/Sirupsen/logrus"
17
17
. "github.com/contiv/check"
18
- "github.com/contiv/contivmodel/client"
18
+ "github.com/contiv/netplugin/ contivmodel/client"
19
19
"github.com/contiv/remotessh"
20
20
)
21
21
You can’t perform that action at this time.
0 commit comments