Say I have resource requests and limits set to
resources:
requests:
cpu: "100m"
memory: "512Mi"
limits:
cpu: "500m"
memory: "1024Mi"
and targetCPUUtilizationPercentage
set to 80,
so when more than 80m of CPU is utilized by pods on average, it will auto-scale.
So, what i want to understand is that the resource limit in this case will be useless, right? Or, does it play any role?