requestedResources should be the minimum resources what the microservice can consume. But with my test-microservice it consumes always the resource limits, although it only writes a few lines to the console every minute. What do I have to do, that a microservice consumes only minimum resources when it is in IDLE mode.
The ârequestedResourcesâ are the minimum resources necessary to start the microservice, but they have little to no impact on billing. When the microservice pod is started, it will request the amount of resources listed in the âresourcesâ manifest. In your case, that is 1 CPU, 1 GB RAM. Then, to begin running, it will check to ensure these resources are enough to cover the ârequestedResourcesâ values.
To alter the billable amount, you should plan on reducing the âresourcesâ values for your microservice. Note that the ârequestedResourcesâ and the âresourcesâ can be the same value, if necessary. Happy to chat more on this with you if needed!