From 7fc195e44ec99e601617a34b0d7d817b49bb3baa Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 8 Dec 2024 21:14:06 +0100 Subject: [PATCH] fix(k8s): adjust CPU requests for better resource allocation Reduces the CPU request from "100m" to "10m" in the deploy.yaml file to optimize resource usage and improve deployment efficiency in the Kubernetes environment. This change helps to allocate resources more effectively while maintaining application performance. --- k8s/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index 062ebf9..a938428 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -45,7 +45,7 @@ spec: cpu: "500m" memory: "100Mi" requests: - cpu: "100m" + cpu: "10m" memory: "20Mi" readinessProbe: httpGet: