Documentation ¶
Index ¶
- Constants
- func ClearNominatedNodeName(ctx context.Context, cs kubernetes.Interface, pods ...*v1.Pod) utilerrors.Aggregate
- func DeletePod(ctx context.Context, cs kubernetes.Interface, pod *v1.Pod) error
- func GetEarliestPodStartTime(victims *extenderv1.Victims) *metav1.Time
- func GetNonzeroRequests(requests *v1.ResourceList) (int64, int64)
- func GetPodFullName(pod *v1.Pod) string
- func GetPodStartTime(pod *v1.Pod) *metav1.Time
- func GetRequestForResource(resource v1.ResourceName, requests *v1.ResourceList, nonZero bool) int64
- func IsScalarResourceName(name v1.ResourceName) bool
- func MoreImportantPod(pod1, pod2 *v1.Pod) bool
- func PatchPodStatus(ctx context.Context, cs kubernetes.Interface, old *v1.Pod, ...) error
- func Retriable(err error) bool
Constants ¶
const ( // DefaultMilliCPURequest defines default milli cpu request number. DefaultMilliCPURequest int64 = 100 // 0.1 core // DefaultMemoryRequest defines default memory request size. DefaultMemoryRequest int64 = 200 * 1024 * 1024 // 200 MB )
For each of these resources, a pod that doesn't request the resource explicitly will be treated as having requested the amount indicated below, for the purpose of computing priority only. This ensures that when scheduling zero-request pods, such pods will not all be scheduled to the node with the smallest in-use request, and that when scheduling regular pods, such pods will not see zero-request pods as consuming no resources whatsoever. We chose these values to be similar to the resources that we give to cluster addon pods (#10653). But they are pretty arbitrary. As described in #11713, we use request instead of limit to deal with resource requirements.
Variables ¶
This section is empty.
Functions ¶
func ClearNominatedNodeName ¶ added in v1.19.0
func ClearNominatedNodeName(ctx context.Context, cs kubernetes.Interface, pods ...*v1.Pod) utilerrors.Aggregate
ClearNominatedNodeName internally submit a patch request to API server to set each pods[*].Status.NominatedNodeName> to "".
func GetEarliestPodStartTime ¶ added in v1.15.0
func GetEarliestPodStartTime(victims *extenderv1.Victims) *metav1.Time
GetEarliestPodStartTime returns the earliest start time of all pods that have the highest priority among all victims.
func GetNonzeroRequests ¶ added in v1.18.0
func GetNonzeroRequests(requests *v1.ResourceList) (int64, int64)
GetNonzeroRequests returns the default cpu and memory resource request if none is found or what is provided on the request.
func GetPodFullName ¶
GetPodFullName returns a name that uniquely identifies a pod.
func GetPodStartTime ¶ added in v1.15.0
GetPodStartTime returns start time of the given pod or current timestamp if it hasn't started yet.
func GetRequestForResource ¶ added in v1.22.4
func GetRequestForResource(resource v1.ResourceName, requests *v1.ResourceList, nonZero bool) int64
GetRequestForResource returns the requested values unless nonZero is true and there is no defined request for CPU and memory. If nonZero is true and the resource has no defined request for CPU or memory, it returns a default value.
func IsScalarResourceName ¶ added in v1.20.0
func IsScalarResourceName(name v1.ResourceName) bool
IsScalarResourceName validates the resource for Extended, Hugepages, Native and AttachableVolume resources
func MoreImportantPod ¶ added in v1.15.0
MoreImportantPod return true when priority of the first pod is higher than the second one. If two pods' priorities are equal, compare their StartTime. It takes arguments of the type "interface{}" to be used with SortableList, but expects those arguments to be *v1.Pod.
Types ¶
This section is empty.