CKAD Prep Part 6 – Container Resource Requirements
Container Resource Requirements Kubernetes allows you to specify the CPU and memory requirements for a container. As part of the Pod spec you can specify CPU and memory requests and limits. requests the CPU and memory resources required to run a container used by Kubernetes to decide what worker Node a Pod should be deployed to. This ensures there are sufficient resources on the Node to run the Pod. limits an upper limit for the resource usage of a container if a container exceeds these limits it will likely be destroyed. stops individual containers monopolising resources on a Node. requests and limits are defined beneath resources [...]