Hello,
I’m deploying my applications on K8S, and I think they consume many resources, this is how I define them in my deployment.yaml file :
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
What do you think ?