From 8e02bfb0a2918c13390385bd56a3ccc2b1eb61fa Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 12 Apr 2025 10:44:13 +0200 Subject: [PATCH] refactor(deploy): remove cpu and memory limits for schemas Removes the CPU and memory limits for the schemas container in the Kubernetes deployment configuration. This change is made to allow for greater flexibility in resource allocation based on runtime demands, ensuring better performance in varying load conditions. --- k8s/deploy.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index f75faca..2d185bb 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -41,9 +41,6 @@ spec: containers: - name: schemas resources: - limits: - cpu: "500m" - memory: "100Mi" requests: cpu: "20m" memory: "20Mi" -- 2.52.0