astefanutti commented on issue #2768:
URL: https://github.com/apache/camel-k/issues/2768#issuecomment-976242805


   The main contributor to compute resources consumption is likely to be the 
Maven builds that are performed in the operator Pod (assuming you use the 
default build strategy). So the resource requirements should be defined 
accordingly. The following requirements are sensible defaults that should work 
in most cases:
   
   ```yaml
   resources:
     limits:
       cpu: "1"
       memory: 1Gi
     requests:
       cpu: 500m
       memory: 512Mi
   ```
   
   Note that if you plan to perform native builds, then the memory requirements 
must be increased significantly. Also the CPU requirements are rather "soft", 
in the sense that it won't break the operator, but it'll perform slower in 
general. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to