refactor: reduce resource requests in deploy.yaml

Adjust the CPU and memory requests for the container from 10m and 
10Mi to 5m and 5Mi, respectively, to optimize resource usage in 
the Kubernetes deployment. This change aims to allocate fewer 
resources while maintaining application performance.
This commit is contained in:
2024-12-08 21:07:56 +01:00
parent 00739baf34
commit 5426baeefc
+2 -2
View File
@@ -49,8 +49,8 @@ spec:
- containerPort: 80
resources:
requests:
cpu: 10m
memory: 10Mi
cpu: 5m
memory: 5Mi
limits:
cpu: 300m
memory: 300Mi