Skip to content
This repository was archived by the owner on Apr 20, 2020. It is now read-only.

Commit 7697dca

Browse files
committed
dpm was moved to a separate repo, fix dependencies and imports
Signed-off-by: Petr Horacek <[email protected]>
1 parent b8dd4cb commit 7697dca

File tree

315 files changed

+26397
-25656
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+26397
-25656
lines changed

Gopkg.lock

Lines changed: 18 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,3 @@
2828
[[constraint]]
2929
branch = "master"
3030
name = "golang.org/x/net"
31-
32-
[[constraint]]
33-
name = "google.golang.org/grpc"
34-
version = "1.9.2"
35-
36-
[[constraint]]
37-
name = "k8s.io/kubernetes"
38-
version = "1.9.2"

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Each plugin may have it's own build instructions in the linked README.md.
2828
## Creating Device Plugin
2929

3030
See Device Plugin Manager documentaion on
31-
https://godoc.org/github.com/kubevirt/kubernetes-device-plugins/pkg/dpm
31+
https://godoc.org/github.com/kubevirt/device-plugin-manager/pkg/dpm
3232

3333
## Develop
3434

@@ -55,5 +55,4 @@ Test specific modules:
5555

5656
```
5757
make test-cmd-vfio
58-
make test-pkg-dpm
5958
```

cmd/kvm/kvm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"flag"
55

6-
"kubevirt.io/kubernetes-device-plugins/pkg/dpm"
6+
"github.com/kubevirt/device-plugin-manager/pkg/dpm"
77
"kubevirt.io/kubernetes-device-plugins/pkg/kvm"
88
)
99

cmd/network/bridge/bridge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66

77
"github.com/golang/glog"
8-
"kubevirt.io/kubernetes-device-plugins/pkg/dpm"
8+
"github.com/kubevirt/device-plugin-manager/pkg/dpm"
99
"kubevirt.io/kubernetes-device-plugins/pkg/network/bridge"
1010
)
1111

cmd/pci/server

-12.2 MB
Binary file not shown.

cmd/vfio/vfio.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"flag"
2727
"os"
2828

29-
"kubevirt.io/kubernetes-device-plugins/pkg/dpm"
29+
"github.com/kubevirt/device-plugin-manager/pkg/dpm"
3030
"kubevirt.io/kubernetes-device-plugins/pkg/pci"
3131
)
3232

pkg/kvm/kvm.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ import (
55
"strconv"
66

77
"github.com/golang/glog"
8+
"github.com/kubevirt/device-plugin-manager/pkg/dpm"
89
"golang.org/x/net/context"
910
pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha"
10-
11-
"kubevirt.io/kubernetes-device-plugins/pkg/dpm"
1211
)
1312

1413
const (

pkg/network/bridge/lister.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66

77
"github.com/golang/glog"
8-
"kubevirt.io/kubernetes-device-plugins/pkg/dpm"
8+
"github.com/kubevirt/device-plugin-manager/pkg/dpm"
99
)
1010

1111
const (

pkg/pci/pci.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import (
99
"strings"
1010

1111
"github.com/golang/glog"
12-
13-
"kubevirt.io/kubernetes-device-plugins/pkg/dpm"
12+
"github.com/kubevirt/device-plugin-manager/pkg/dpm"
1413
)
1514

1615
const (

0 commit comments

Comments
 (0)