Resources
Learn how to assign CPU/memory resources to your containerized application.
Deployment
Default Configuration
POD_NAME=$(kubectl get pods -lapp=helloworld -o jsonpath='{.items[0].metadata.name}')
kubectl describe pod $POD_NAMEName: helloworld-...
Namespace: default...
Containers:
helloworld:
...
Requests:
cpu: 100m
...Resource Request
Resource Limit
Last updated
Was this helpful?