package cm
import "k8s.io/kubernetes/pkg/kubelet/cm"
Index ¶
- Constants
- func ConvertCgroupFsNameToSystemd(cgroupfsName string) (string, error)
- func ConvertCgroupNameToSystemd(cgroupName CgroupName, outputToCgroupFs bool) string
- func MilliCPUToQuota(milliCPU int64) (int64, int64)
- func MilliCPUToShares(milliCPU int64) int64
- func NewFakeInternalContainerLifecycle() *fakeInternalContainerLifecycle
- func ParseQOSReserved(m kubeletconfig.ConfigurationMap) (*map[v1.ResourceName]int64, error)
- type ActivePodsFunc
- type CgroupConfig
- type CgroupManager
- type CgroupName
- type CgroupSubsystems
- type ContainerManager
- func NewContainerManager(_ mount.Interface, _ cadvisor.Interface, _ NodeConfig, failSwapOn bool, devicePluginEnabled bool, recorder record.EventRecorder) (ContainerManager, error)
- func NewStubContainerManager() ContainerManager
- type DevicePluginHandler
- type DevicePluginHandlerImpl
- func NewDevicePluginHandlerImpl(updateCapacityFunc func(v1.ResourceList)) (*DevicePluginHandlerImpl, error)
- func (h *DevicePluginHandlerImpl) Allocate(pod *v1.Pod, container *v1.Container, activePods []*v1.Pod) ([]*pluginapi.AllocateResponse, error)
- func (h *DevicePluginHandlerImpl) Devices() map[string][]*pluginapi.Device
- func (h *DevicePluginHandlerImpl) Start() error
- type DevicePluginHandlerStub
- func NewDevicePluginHandlerStub() (*DevicePluginHandlerStub, error)
- func (h *DevicePluginHandlerStub) Allocate(pod *v1.Pod, container *v1.Container, activePods []*v1.Pod) ([]*pluginapi.AllocateResponse, error)
- func (h *DevicePluginHandlerStub) Devices() map[string][]*pluginapi.Device
- func (h *DevicePluginHandlerStub) Start() error
- type InternalContainerLifecycle
- type MemoryStats
- type NodeAllocatableConfig
- type NodeConfig
- type PodContainerManager
- type QOSContainersInfo
- type ResourceConfig
- type ResourceStats
- type Status
Constants ¶
const ( // Uer visible keys for managing node allocatable enforcement on the node. NodeAllocatableEnforcementKey = "pods" SystemReservedEnforcementKey = "system-reserved" KubeReservedEnforcementKey = "kube-reserved" )
const ( MilliCPUToCPU = 0 QuotaPeriod = 0 MinQuotaPeriod = 0 )= 0 = 0
Functions ¶
func ConvertCgroupFsNameToSystemd ¶
func ConvertCgroupNameToSystemd ¶
func ConvertCgroupNameToSystemd(cgroupName CgroupName, outputToCgroupFs bool) string
func MilliCPUToQuota ¶
MilliCPUToQuota converts milliCPU to CFS quota and period values.
func MilliCPUToShares ¶
MilliCPUToShares converts the milliCPU to CFS shares.
func NewFakeInternalContainerLifecycle ¶
func NewFakeInternalContainerLifecycle() *fakeInternalContainerLifecycle
func ParseQOSReserved ¶
func ParseQOSReserved(m kubeletconfig.ConfigurationMap) (*map[v1.ResourceName]int64, error)
ParseQOSReserved parses the --qos-reserve-requests option
Types ¶
type ActivePodsFunc ¶
type CgroupConfig ¶
type CgroupConfig struct { // Fully qualified name prior to any driver specific conversions. Name CgroupName // ResourceParameters contains various cgroups settings to apply. ResourceParameters *ResourceConfig }
CgroupConfig holds the cgroup configuration information. This is common object which is used to specify cgroup information to both systemd and raw cgroup fs implementation of the Cgroup Manager interface.
type CgroupManager ¶
type CgroupManager interface { // Create creates and applies the cgroup configurations on the cgroup. // It just creates the leaf cgroups. // It expects the parent cgroup to already exist. Create(*CgroupConfig) error // Destroy the cgroup. Destroy(*CgroupConfig) error // Update cgroup configuration. Update(*CgroupConfig) error // Exists checks if the cgroup already exists Exists(name CgroupName) bool // Name returns the literal cgroupfs name on the host after any driver specific conversions. // We would expect systemd implementation to make appropriate name conversion. // For example, if we pass /foo/bar // then systemd should convert the name to something like // foo.slice/foo-bar.slice Name(name CgroupName) string // CgroupName converts the literal cgroupfs name on the host to an internal identifier. CgroupName(name string) CgroupName // Pids scans through all subsystems to find pids associated with specified cgroup. Pids(name CgroupName) []int // ReduceCPULimits reduces the CPU CFS values to the minimum amount of shares. ReduceCPULimits(cgroupName CgroupName) error // GetResourceStats returns statistics of the specified cgroup as read from the cgroup fs. GetResourceStats(name CgroupName) (*ResourceStats, error) }
CgroupManager allows for cgroup management. Supports Cgroup Creation ,Deletion and Updates.
func NewCgroupManager ¶
func NewCgroupManager(_ interface{}) CgroupManager
type CgroupName ¶
type CgroupName string
CgroupName is the abstract name of a cgroup prior to any driver specific conversion.
type CgroupSubsystems ¶
func GetCgroupSubsystems ¶
func GetCgroupSubsystems() (*CgroupSubsystems, error)
GetCgroupSubsystems returns information about the mounted cgroup subsystems
type ContainerManager ¶
type ContainerManager interface { // Runs the container manager's housekeeping. // - Ensures that the Docker daemon is in a container. // - Creates the system container where all non-containerized processes run. Start(*v1.Node, ActivePodsFunc, status.PodStatusProvider, internalapi.RuntimeService) error // Returns resources allocated to system cgroups in the machine. // These cgroups include the system and Kubernetes services. SystemCgroupsLimit() v1.ResourceList // Returns a NodeConfig that is being used by the container manager. GetNodeConfig() NodeConfig // Returns internal Status. Status() Status // NewPodContainerManager is a factory method which returns a podContainerManager object // Returns a noop implementation if qos cgroup hierarchy is not enabled NewPodContainerManager() PodContainerManager // GetMountedSubsystems returns the mounted cgroup subsystems on the node GetMountedSubsystems() *CgroupSubsystems // GetQOSContainersInfo returns the names of top level QoS containers GetQOSContainersInfo() QOSContainersInfo // GetNodeAllocatable returns the amount of compute resources that have to be reserved from scheduling. GetNodeAllocatableReservation() v1.ResourceList // GetCapacity returns the amount of compute resources tracked by container manager available on the node. GetCapacity() v1.ResourceList // UpdateQOSCgroups performs housekeeping updates to ensure that the top // level QoS containers have their desired state in a thread-safe way UpdateQOSCgroups() error // Returns RunContainerOptions with devices, mounts, and env fields populated for // extended resources required by container. GetResources(pod *v1.Pod, container *v1.Container, activePods []*v1.Pod) (*kubecontainer.RunContainerOptions, error) InternalContainerLifecycle() InternalContainerLifecycle }
Manages the containers running on a machine.
func NewContainerManager ¶
func NewContainerManager(_ mount.Interface, _ cadvisor.Interface, _ NodeConfig, failSwapOn bool, devicePluginEnabled bool, recorder record.EventRecorder) (ContainerManager, error)
func NewStubContainerManager ¶
func NewStubContainerManager() ContainerManager
type DevicePluginHandler ¶
type DevicePluginHandler interface { // Start starts device plugin registration service. Start() error // Devices returns all of registered devices keyed by resourceName. Devices() map[string][]*pluginapi.Device // Allocate attempts to allocate all of required extended resources for // the input container, issues an Allocate rpc request for each of such // resources, and returns their AllocateResponses on success. Allocate(pod *v1.Pod, container *v1.Container, activePods []*v1.Pod) ([]*pluginapi.AllocateResponse, error) }
type DevicePluginHandlerImpl ¶
func NewDevicePluginHandlerImpl ¶
func NewDevicePluginHandlerImpl(updateCapacityFunc func(v1.ResourceList)) (*DevicePluginHandlerImpl, error)
NewDevicePluginHandler create a DevicePluginHandler updateCapacityFunc is called to update ContainerManager capacity when device capacity changes.
func (*DevicePluginHandlerImpl) Allocate ¶
func (h *DevicePluginHandlerImpl) Allocate(pod *v1.Pod, container *v1.Container, activePods []*v1.Pod) ([]*pluginapi.AllocateResponse, error)
func (*DevicePluginHandlerImpl) Devices ¶
func (h *DevicePluginHandlerImpl) Devices() map[string][]*pluginapi.Device
func (*DevicePluginHandlerImpl) Start ¶
func (h *DevicePluginHandlerImpl) Start() error
type DevicePluginHandlerStub ¶
type DevicePluginHandlerStub struct{}
A simple stub implementation for DevicePluginHandler.
func NewDevicePluginHandlerStub ¶
func NewDevicePluginHandlerStub() (*DevicePluginHandlerStub, error)
func (*DevicePluginHandlerStub) Allocate ¶
func (h *DevicePluginHandlerStub) Allocate(pod *v1.Pod, container *v1.Container, activePods []*v1.Pod) ([]*pluginapi.AllocateResponse, error)
func (*DevicePluginHandlerStub) Devices ¶
func (h *DevicePluginHandlerStub) Devices() map[string][]*pluginapi.Device
func (*DevicePluginHandlerStub) Start ¶
func (h *DevicePluginHandlerStub) Start() error
type InternalContainerLifecycle ¶
type InternalContainerLifecycle interface { PreStartContainer(pod *v1.Pod, container *v1.Container, containerID string) error PreStopContainer(containerID string) error PostStopContainer(containerID string) error }
type MemoryStats ¶
type MemoryStats struct { // Memory usage (in bytes). Usage int64 }
MemoryStats holds the on-demand statistics from the memory cgroup
type NodeAllocatableConfig ¶
type NodeAllocatableConfig struct { KubeReservedCgroupName string SystemReservedCgroupName string EnforceNodeAllocatable sets.String KubeReserved v1.ResourceList SystemReserved v1.ResourceList HardEvictionThresholds []evictionapi.Threshold }
type NodeConfig ¶
type NodeConfig struct { RuntimeCgroupsName string SystemCgroupsName string KubeletCgroupsName string ContainerRuntime string CgroupsPerQOS bool CgroupRoot string CgroupDriver string ProtectKernelDefaults bool NodeAllocatableConfig ExperimentalQOSReserved map[v1.ResourceName]int64 ExperimentalCPUManagerPolicy string ExperimentalCPUManagerReconcilePeriod time.Duration }
type PodContainerManager ¶
type PodContainerManager interface { // GetPodContainerName returns the CgroupName identifier, and its literal cgroupfs form on the host. GetPodContainerName(*v1.Pod) (CgroupName, string) // EnsureExists takes a pod as argument and makes sure that // pod cgroup exists if qos cgroup hierarchy flag is enabled. // If the pod cgroup doesn't already exist this method creates it. EnsureExists(*v1.Pod) error // Exists returns true if the pod cgroup exists. Exists(*v1.Pod) bool // Destroy takes a pod Cgroup name as argument and destroys the pod's container. Destroy(name CgroupName) error // ReduceCPULimits reduces the CPU CFS values to the minimum amount of shares. ReduceCPULimits(name CgroupName) error // GetAllPodsFromCgroups enumerates the set of pod uids to their associated cgroup based on state of cgroupfs system. GetAllPodsFromCgroups() (map[types.UID]CgroupName, error) }
PodContainerManager stores and manages pod level containers The Pod workers interact with the PodContainerManager to create and destroy containers for the pod.
type QOSContainersInfo ¶
QOSContainersInfo stores the names of containers per qos
type ResourceConfig ¶
type ResourceConfig struct { // Memory limit (in bytes). Memory *int64 // CPU shares (relative weight vs. other containers). *uint64 // CPU hardcap limit (in usecs). Allowed cpu time in a given period. CpuQuota *int64 // CPU quota period. CpuPeriod *uint64 // HugePageLimit map from page size (in bytes) to limit (in bytes) HugePageLimit map[int64]int64 }
ResourceConfig holds information about all the supported cgroup resource parameters.
func ResourceConfigForPod ¶
func ResourceConfigForPod(pod *v1.Pod) *ResourceConfig
ResourceConfigForPod takes the input pod and outputs the cgroup resource config.
type ResourceStats ¶
type ResourceStats struct { // Memory statistics. MemoryStats *MemoryStats }
ResourceStats holds on-demand statistics from various cgroup subsystems
type Status ¶
type Status struct { // Any soft requirements that were unsatisfied. SoftRequirements error }
Source Files ¶
cgroup_manager_unsupported.go container_manager.go container_manager_stub.go container_manager_unsupported.go device_plugin_handler.go device_plugin_handler_stub.go fake_internal_container_lifecycle.go helpers_unsupported.go internal_container_lifecycle.go pod_container_manager_stub.go pod_container_manager_unsupported.go types.go
Directories ¶
Path | Synopsis |
---|---|
pkg/kubelet/cm/cpumanager | |
pkg/kubelet/cm/cpumanager/state | |
pkg/kubelet/cm/cpumanager/topology | Package topology contains helpers for the CPU manager. |
pkg/kubelet/cm/cpuset | |
pkg/kubelet/cm/util |
- Version
- v1.8.9
- Published
- Mar 12, 2018
- Platform
- darwin/amd64
- Imports
- 26 packages
- Last checked
- 13 minutes ago –
Tools for package owners.