Resources
Pod CPU resources
apiVersion: v1
kind: Pod
metadata:
name: my-app
spec:
containers:
- name: app
image: my.private.registry/my-app
resources:
requests: // we are talking about it
memory: "64M"
cpu: "250m"
limits:
memory: "128M"
cpu: "500m"


Last updated