Documentation ¶
Overview ¶
package qos contains helper functions for quality of service. For each resource (memory, CPU) Kubelet supports three classes of containers. Memory guaranteed containers will receive the highest priority and will get all the resources they need. Burstable containers will be guaranteed their request and can “burst” and use more resources when available. Best-Effort containers, which don’t specify a request, can use resources only if not being used by other pods.
Index ¶
Constants ¶
const ( PodInfraOOMAdj int = -999 KubeletOOMScoreAdj int = -999 KubeProxyOOMScoreAdj int = -999 )
Variables ¶
This section is empty.
Functions ¶
func GetContainerOOMScoreAdjust ¶ added in v1.2.0
GetContainerOOMAdjust returns the amount by which the OOM score of all processes in the container should be adjusted. The OOM score of a process is the percentage of memory it consumes multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000 and 1000. Containers with higher OOM scores are killed if the system runs out of memory. See https://lwn.net/Articles/391222/ for more information.
Types ¶
type QOSClass ¶ added in v1.4.0
type QOSClass string
QOSClass defines the supported qos classes of Pods/Containers.
func GetPodQOS ¶ added in v1.4.0
GetPodQOS returns the QoS class of a pod. A pod is besteffort if none of its containers have specified any requests or limits. A pod is guaranteed only when requests and limits are specified for all the containers and they are equal. A pod is burstable if limits and requests do not match across all containers.