From 972adc209d0a3a99d5a889adb758d432d9c94c7c Mon Sep 17 00:00:00 2001 From: Masaki Yatsu Date: Thu, 13 Nov 2025 12:49:43 +0900 Subject: [PATCH] chore(postgres): set resource request and limit --- postgres/postgres-cluster-values.gomplate.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/postgres/postgres-cluster-values.gomplate.yaml b/postgres/postgres-cluster-values.gomplate.yaml index b0da714..52cf6a3 100644 --- a/postgres/postgres-cluster-values.gomplate.yaml +++ b/postgres/postgres-cluster-values.gomplate.yaml @@ -1,6 +1,15 @@ cluster: instances: 1 + # Resource configuration (Guaranteed QoS) + resources: + requests: + cpu: 200m + memory: 1Gi + limits: + cpu: 200m + memory: 1Gi + # Storage configuration storage: size: {{ .Env.POSTGRES_STORAGE_SIZE }}