K
Q

When scheduling a pod into a node, does k8s take into account 'requested' or 'limit' resources?

7/27/2019

Does kubernetes check for node affinity (in term of resources like cpu, memory...) the memory set as 'request' in pod definition, or the 'limit' set?

-- JRAR
kubernetes

Similar Questions

kubernetes cronjob in GKE stop scheduling the job after a few weeks
How to specify a GKE node pool configuration in a YAML file instead of using gcloud container node-pools create?
kubernetes-dashboard cannot display metrics of metrics-server
How to get allocated gpus for node in kubernetes[with kubernetes-client java api]
Aceessing K8s secrets from any Airflow task
IBM Cloud: Access container registry from Terraform
Ingress gateway on each node
How do `ip netns` and `unshare` save their persistent network namespaces? Can they use each others?
Local host communication in Kubernetes Pods via Skaffold

1 Answer

7/27/2019

Scheduler looks at request values: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#how-pods-with-resource-requests-are-scheduled

-- Egor Stambakio
Source: StackOverflow