Kubernetes - Resource Management
Given this pod spec snippet, what happens if the container tries to use 1 CPU but the limit is 500m?
resources:
requests:
cpu: "250m"
limits:
cpu: "500m"