From 441b807e19fa7324a8ae765ee723c1d4e636cc86 Mon Sep 17 00:00:00 2001 From: TonyKaracic33 Date: Tue, 19 May 2026 23:10:01 +0200 Subject: [PATCH] fix: smanji CPU request za postgres --- manifests/database/deployment.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/manifests/database/deployment.yaml b/manifests/database/deployment.yaml index 7f76950..0dfc3e2 100644 --- a/manifests/database/deployment.yaml +++ b/manifests/database/deployment.yaml @@ -21,6 +21,13 @@ spec: name: postgres-secret ports: - containerPort: 5432 + resources: + requests: + cpu: "10m" + memory: "64Mi" + limits: + cpu: "100m" + memory: "128Mi" volumeMounts: - name: postgres-data mountPath: /var/lib/postgresql/data @@ -32,4 +39,4 @@ spec: volumes: - name: postgres-data persistentVolumeClaim: - claimName: postgres-pvc \ No newline at end of file + claimName: postgres-pvc \ No newline at end of file