package cm
import "k8s.io/kubernetes/pkg/kubelet/cm"
Index ¶
- type CgroupConfig
- type CgroupManager
- type CgroupSubsystems
- type ContainerManager
- func NewContainerManager(_ mount.Interface, _ cadvisor.Interface, _ NodeConfig) (ContainerManager, error)
- func NewStubContainerManager() ContainerManager
- type NodeConfig
- type PodContainerManager
- type QOSContainersInfo
- type ResourceConfig
- type Status
Types ¶
type CgroupConfig ¶
type CgroupConfig struct { // Fully qualified name Name string // 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 // Destroys the cgroup. Destroy(*CgroupConfig) error // Update cgroup configuration. Update(*CgroupConfig) error // Exists checks if the cgroup already exists Exists(string) bool }
CgroupManager allows for cgroup management. Supports Cgroup Creation ,Deletion and Updates.
func NewCgroupManager ¶
func NewCgroupManager(_ interface{}) CgroupManager
type CgroupSubsystems ¶
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(*api.Node) error // Returns resources allocated to system cgroups in the machine. // These cgroups include the system and Kubernetes services. SystemCgroupsLimit() api.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 subsytems on the node GetMountedSubsystems() *CgroupSubsystems // GetQOSContainersInfo returns the names of top level QoS containers GetQOSContainersInfo() QOSContainersInfo }
Manages the containers running on a machine.
func NewContainerManager ¶
func NewContainerManager(_ mount.Interface, _ cadvisor.Interface, _ NodeConfig) (ContainerManager, error)
func NewStubContainerManager ¶
func NewStubContainerManager() ContainerManager
type NodeConfig ¶
type NodeConfig struct { RuntimeCgroupsName string SystemCgroupsName string KubeletCgroupsName string ContainerRuntime string CgroupsPerQOS bool CgroupRoot string ProtectKernelDefaults bool }
type PodContainerManager ¶
type PodContainerManager interface { // getPodContainerName returns the pod container's absolute name GetPodContainerName(*api.Pod) 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 doesen't already exist this method creates it. EnsureExists(*api.Pod) error Exists(*api.Pod) bool //Destroy takes a pod as argument and destroys the pod's container. Destroy(string) 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). *int64 // CPU hardcap limit (in usecs). Allowed cpu time in a given period. CpuQuota *int64 }
ResourceConfig holds information about all the supported cgroup resource parameters.
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 pod_container_manager_stub.go pod_container_manager_unsupported.go types.go
- Version
- v1.4.1
- Published
- Oct 10, 2016
- Platform
- darwin/amd64
- Imports
- 5 packages
- Last checked
- 15 minutes ago –
Tools for package owners.