Configuring pod resources
- Ashhad Alam
Owned by Ashhad Alam
A pod/container is allowed to use more of the resources than specified in the request
. However, it cannot use more than what is specified in the resource limit
.
For example, if you set a memory request of 512Mi for a pod, and the available memory is 6144Mi, the pod can try to use more memory. Nevertheless, if you have set a memory limit of 3072Mi for that pod, the system will prevent the pod from using the more memory than defined in the resource limit
.
Here is how you can change the CPU and memory figures for resources used by a microservice.
- Open the values.yaml file.
- Go to the respective microservice for which you want to configure the resource requests and limits as shown in the example below.
- Save the file.
- Redeploy the application.
 Â
You may be interested in...