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:
+2
-2
@@ -49,8 +49,8 @@ spec:
|
|||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 5m
|
||||||
memory: 10Mi
|
memory: 5Mi
|
||||||
limits:
|
limits:
|
||||||
cpu: 300m
|
cpu: 300m
|
||||||
memory: 300Mi
|
memory: 300Mi
|
||||||
|
|||||||
Reference in New Issue
Block a user