mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 05:27:21 +00:00
Added BUILD files and updates to Boilerplates
This commit is contained in:
parent
71bbc6d538
commit
e64c558a11
@ -167,6 +167,7 @@ filegroup(
|
|||||||
"//pkg/kubelet/cm/cpuset:all-srcs",
|
"//pkg/kubelet/cm/cpuset:all-srcs",
|
||||||
"//pkg/kubelet/cm/devicemanager:all-srcs",
|
"//pkg/kubelet/cm/devicemanager:all-srcs",
|
||||||
"//pkg/kubelet/cm/topologymanager/socketmask:all-srcs",
|
"//pkg/kubelet/cm/topologymanager/socketmask:all-srcs",
|
||||||
|
"//pkg/kubelet/cm/topologymanager:all-srcs",
|
||||||
"//pkg/kubelet/cm/util:all-srcs",
|
"//pkg/kubelet/cm/util:all-srcs",
|
||||||
],
|
],
|
||||||
tags = ["automanaged"],
|
tags = ["automanaged"],
|
||||||
|
30
pkg/kubelet/cm/topologymanager/BUILD
Normal file
30
pkg/kubelet/cm/topologymanager/BUILD
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||||
|
|
||||||
|
go_library(
|
||||||
|
name = "go_default_library",
|
||||||
|
srcs = [
|
||||||
|
"policy.go",
|
||||||
|
"topology_manager.go",
|
||||||
|
],
|
||||||
|
importpath = "k8s.io/kubernetes/pkg/kubelet/cm/topologymanager",
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
deps = [
|
||||||
|
"//pkg/kubelet/cm/topologymanager/socketmask:go_default_library",
|
||||||
|
"//pkg/kubelet/lifecycle:go_default_library",
|
||||||
|
"//staging/src/k8s.io/api/core/v1:go_default_library",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "package-srcs",
|
||||||
|
srcs = glob(["**"]),
|
||||||
|
tags = ["automanaged"],
|
||||||
|
visibility = ["//visibility:private"],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "all-srcs",
|
||||||
|
srcs = [":package-srcs"],
|
||||||
|
tags = ["automanaged"],
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
)
|
@ -1,8 +1,12 @@
|
|||||||
/*Copyright 2019 The Kubernetes Authors.
|
/*
|
||||||
|
Copyright 2019 The Kubernetes Authors.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
You may obtain a copy of the License at
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
Unless required by applicable law or agreed to in writing, software
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
/*Copyright 2019 The Kubernetes Authors.
|
/*
|
||||||
|
Copyright 2019 The Kubernetes Authors.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
You may obtain a copy of the License at
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
Unless required by applicable law or agreed to in writing, software
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@ -13,7 +17,6 @@ limitations under the License.
|
|||||||
package topologymanager
|
package topologymanager
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/golang/glog"
|
|
||||||
"k8s.io/api/core/v1"
|
"k8s.io/api/core/v1"
|
||||||
"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/socketmask"
|
"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/socketmask"
|
||||||
"k8s.io/kubernetes/pkg/kubelet/lifecycle"
|
"k8s.io/kubernetes/pkg/kubelet/lifecycle"
|
||||||
@ -34,12 +37,19 @@ type Manager interface {
|
|||||||
Store
|
Store
|
||||||
}
|
}
|
||||||
|
|
||||||
//Interface to be implemented by Hint Providers
|
//HintProvider interface is to be implemented by Hint Providers
|
||||||
type HintProvider interface {
|
type HintProvider interface {
|
||||||
GetTopologyHints(pod v1.Pod, container v1.Container) TopologyHints
|
GetTopologyHints(pod v1.Pod, container v1.Container) TopologyHints
|
||||||
}
|
}
|
||||||
|
|
||||||
//Interface to allow Hint Providers to retrieve pod affinity
|
//Store interface is to allow Hint Providers to retrieve pod affinity
|
||||||
type Store interface {
|
type Store interface {
|
||||||
GetAffinity(podUID string, containerName string) TopologyHints
|
GetAffinity(podUID string, containerName string) TopologyHints
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TopologyHints is a struct containing Sokcet Affinity for a Pod
|
||||||
|
//and whether Affinity is true or false
|
||||||
|
type TopologyHints struct {
|
||||||
|
SocketAffinity []socketmask.SocketMask
|
||||||
|
Affinity bool
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user