Skip to content

Files

Latest commit

author
chad
Jan 19, 2025
5e37cc3 · Jan 19, 2025

History

History
6 lines (4 loc) · 736 Bytes

requests.md

File metadata and controls

6 lines (4 loc) · 736 Bytes

Requests and Limits

When you specify a Pod, you can optionally specify how much of each resource a container needs. The most common resources to specify are CPU and memory (RAM); there are others.

When you specify the resource request for containers in a Pod, the kube-scheduler uses this information to decide which node to place the Pod on. When you specify a resource limit for a container, the kubelet enforces those limits so that the running container is not allowed to use more of that resource than the limit you set. The kubelet also reserves at least the request amount of that system resource specifically for that container to use.

source: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/