From 2376ad9adc27dfde6446ce8f949b4b6cc2987c9e Mon Sep 17 00:00:00 2001 From: jenkins Date: Sat, 27 Jun 2026 07:54:32 -0300 Subject: [PATCH] veles: preserve live Postgres statefulset shape --- services/veles/postgres-statefulset.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/services/veles/postgres-statefulset.yaml b/services/veles/postgres-statefulset.yaml index 3ae9a27ac..199c3f487 100644 --- a/services/veles/postgres-statefulset.yaml +++ b/services/veles/postgres-statefulset.yaml @@ -46,7 +46,7 @@ spec: type: RuntimeDefault containers: - name: postgres - image: postgres:17 + image: postgres:15 ports: - name: postgres containerPort: 5432 @@ -62,15 +62,13 @@ spec: value: veles resources: requests: - cpu: "1" - memory: 2Gi + cpu: "2" + memory: 8Gi limits: cpu: "4" - memory: 8Gi + memory: 16Gi securityContext: allowPrivilegeEscalation: false - capabilities: - drop: ["ALL"] volumeMounts: - name: postgres-data mountPath: /var/lib/postgresql/data @@ -85,4 +83,4 @@ spec: storageClassName: veles-oceanus-db resources: requests: - storage: 200Gi + storage: 100Gi