requests はコンテナが保証される量(scheduling に使われる)であり、limits はそれが超えてはならない上限(runtime で強制される)です。両者は合わさって、Pod がどこに配置されるか、逼迫下でどう throttle または kill されるか、そして Pod がどの **Quality of Service(QoS)**クラスを得るかを決めます。
requests と limits
REQUEST → the amount RESERVED for the container. The SCHEDULER uses the sum of
requests to decide if a node has room. This is your guaranteed floor.
LIMIT → the MAX the container may use. Enforced at runtime:
CPU over limit → THROTTLED (slowed down, not killed)
memory over limit → OOM-KILLED (container terminated, then restarted)
