File tree 21 files changed +22
-23
lines changed
21 files changed +22
-23
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ pkg/kubelet
209
209
pkg/kubelet/apis
210
210
pkg/kubelet/apis/cri/testing
211
211
pkg/kubelet/apis/cri/v1alpha1/runtime
212
- pkg/kubelet/apis/deviceplugin/v1alpha1
212
+ pkg/kubelet/apis/deviceplugin/v1alpha
213
213
pkg/kubelet/apis/kubeletconfig
214
214
pkg/kubelet/apis/kubeletconfig/v1alpha1
215
215
pkg/kubelet/cadvisor
Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ set -o nounset
19
19
set -o pipefail
20
20
21
21
KUBE_ROOT=" $( cd " $( dirname " ${BASH_SOURCE} " ) /../" && pwd -P) "
22
- DEVICE_PLUGIN_ROOT=" ${KUBE_ROOT} /pkg/kubelet/apis/deviceplugin/v1alpha1 /"
22
+ DEVICE_PLUGIN_ROOT=" ${KUBE_ROOT} /pkg/kubelet/apis/deviceplugin/v1alpha /"
23
23
24
24
source " ${KUBE_ROOT} /hack/lib/protoc.sh"
25
-
26
25
kube::protoc::generate_proto ${DEVICE_PLUGIN_ROOT}
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ set -o nounset
19
19
set -o pipefail
20
20
21
21
KUBE_ROOT=$( dirname " ${BASH_SOURCE} " ) /..
22
- DEVICE_PLUGIN_ROOT=" ${KUBE_ROOT} /pkg/kubelet/apis/deviceplugin/v1alpha1/"
23
22
ERROR=" Device plugin api is out of date. Please run hack/update-generated-device-plugin.sh"
23
+ DEVICE_PLUGIN_ROOT=" ${KUBE_ROOT} /pkg/kubelet/apis/deviceplugin/v1alpha/"
24
24
25
25
source " ${KUBE_ROOT} /hack/lib/protoc.sh"
26
26
kube::golang::setup_env
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ filegroup(
26
26
srcs = [
27
27
":package-srcs" ,
28
28
"//pkg/kubelet/apis/cri:all-srcs" ,
29
- "//pkg/kubelet/apis/deviceplugin/v1alpha1 :all-srcs" ,
29
+ "//pkg/kubelet/apis/deviceplugin/v1alpha :all-srcs" ,
30
30
"//pkg/kubelet/apis/kubeletconfig:all-srcs" ,
31
31
"//pkg/kubelet/apis/stats/v1alpha1:all-srcs" ,
32
32
],
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ go_library(
11
11
"api.pb.go" ,
12
12
"constants.go" ,
13
13
],
14
- importpath = "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 " ,
14
+ importpath = "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha " ,
15
15
deps = [
16
16
"//vendor/github.com/gogo/protobuf/gogoproto:go_default_library" ,
17
17
"//vendor/github.com/gogo/protobuf/proto:go_default_library" ,
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ const (
22
22
// UnHealthy means that the device is unhealty
23
23
Unhealthy = "Unhealthy"
24
24
25
- // Version is the API version
26
- Version = "0.1 "
25
+ // Current version of the API supported by kubelet
26
+ Version = "v1alpha2 "
27
27
// DevicePluginPath is the folder the Device Plugin is expecting sockets to be on
28
28
// Only privileged pods have access to this path
29
29
// Note: Placeholder until we find a "standard path"
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ go_library(
34
34
deps = [
35
35
"//pkg/features:go_default_library" ,
36
36
"//pkg/kubelet/apis/cri:go_default_library" ,
37
- "//pkg/kubelet/apis/deviceplugin/v1alpha1 :go_default_library" ,
37
+ "//pkg/kubelet/apis/deviceplugin/v1alpha :go_default_library" ,
38
38
"//pkg/kubelet/apis/kubeletconfig:go_default_library" ,
39
39
"//pkg/kubelet/cadvisor:go_default_library" ,
40
40
"//pkg/kubelet/cm/cpumanager:go_default_library" ,
@@ -94,7 +94,7 @@ go_test(
94
94
importpath = "k8s.io/kubernetes/pkg/kubelet/cm" ,
95
95
library = ":go_default_library" ,
96
96
deps = [
97
- "//pkg/kubelet/apis/deviceplugin/v1alpha1 :go_default_library" ,
97
+ "//pkg/kubelet/apis/deviceplugin/v1alpha :go_default_library" ,
98
98
"//pkg/util/mount:go_default_library" ,
99
99
"//vendor/github.com/stretchr/testify/assert:go_default_library" ,
100
100
"//vendor/k8s.io/api/core/v1:go_default_library" ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
28
28
"k8s.io/api/core/v1"
29
29
"k8s.io/apimachinery/pkg/api/resource"
30
30
"k8s.io/apimachinery/pkg/util/sets"
31
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
31
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
32
32
"k8s.io/kubernetes/pkg/kubelet/deviceplugin"
33
33
)
34
34
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ package cm
18
18
19
19
import (
20
20
"k8s.io/api/core/v1"
21
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
21
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
22
22
)
23
23
24
24
// A simple stub implementation for DevicePluginHandler.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
28
28
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
29
29
"k8s.io/apimachinery/pkg/util/sets"
30
30
"k8s.io/apimachinery/pkg/util/uuid"
31
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
31
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
32
32
)
33
33
34
34
func TestUpdateCapacity (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ go_library(
18
18
importpath = "k8s.io/kubernetes/pkg/kubelet/deviceplugin" ,
19
19
deps = [
20
20
"//pkg/api/v1/helper:go_default_library" ,
21
- "//pkg/kubelet/apis/deviceplugin/v1alpha1 :go_default_library" ,
21
+ "//pkg/kubelet/apis/deviceplugin/v1alpha :go_default_library" ,
22
22
"//vendor/github.com/golang/glog:go_default_library" ,
23
23
"//vendor/golang.org/x/net/context:go_default_library" ,
24
24
"//vendor/google.golang.org/grpc:go_default_library" ,
@@ -49,7 +49,7 @@ go_test(
49
49
importpath = "k8s.io/kubernetes/pkg/kubelet/deviceplugin" ,
50
50
library = ":go_default_library" ,
51
51
deps = [
52
- "//pkg/kubelet/apis/deviceplugin/v1alpha1 :go_default_library" ,
52
+ "//pkg/kubelet/apis/deviceplugin/v1alpha :go_default_library" ,
53
53
"//vendor/github.com/stretchr/testify/require:go_default_library" ,
54
54
],
55
55
)
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
"golang.org/x/net/context"
27
27
"google.golang.org/grpc"
28
28
29
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
29
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
30
30
)
31
31
32
32
// Stub implementation for DevicePlugin.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
"golang.org/x/net/context"
27
27
"google.golang.org/grpc"
28
28
29
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
29
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
30
30
)
31
31
32
32
// endpoint maps to a single registered device plugin. It is responsible
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
24
24
"github.com/stretchr/testify/require"
25
25
26
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
26
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
27
27
)
28
28
29
29
var (
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"golang.org/x/net/context"
28
28
"google.golang.org/grpc"
29
29
30
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
30
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
31
31
)
32
32
33
33
// ManagerImpl is the structure in charge of managing Device Plugins.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
24
24
"github.com/stretchr/testify/require"
25
25
26
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
26
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
27
27
)
28
28
29
29
const (
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ limitations under the License.
17
17
package deviceplugin
18
18
19
19
import (
20
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
20
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
21
21
)
22
22
23
23
// MonitorCallback is the function called when a device's health state changes,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
22
22
"k8s.io/api/core/v1"
23
23
v1helper "k8s.io/kubernetes/pkg/api/v1/helper"
24
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
24
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
25
25
)
26
26
27
27
func cloneDevice (d * pluginapi.Device ) * pluginapi.Device {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
22
22
"github.com/stretchr/testify/require"
23
23
24
- pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha1 "
24
+ pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha "
25
25
)
26
26
27
27
func TestCloneDevice (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments