From 76eedf3b76f86703205534a06ae6a0937527a0e0 Mon Sep 17 00:00:00 2001 From: DarkSky <25152247+darkskygit@users.noreply.github.com> Date: Sat, 2 Aug 2025 18:00:44 +0800 Subject: [PATCH] chore(server): downscale sql proxy (#13393) image ## Summary by CodeRabbit * **Chores** * Reduced the number of gcloud-sql-proxy replicas from 3 to 2. * Lowered memory and CPU resource limits for the gcloud-sql-proxy container. * Added resource requests to optimize container performance. --- .github/helm/affine/charts/gcloud-sql-proxy/values.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/helm/affine/charts/gcloud-sql-proxy/values.yaml b/.github/helm/affine/charts/gcloud-sql-proxy/values.yaml index 99d3dd1e8..e1e2ddff2 100644 --- a/.github/helm/affine/charts/gcloud-sql-proxy/values.yaml +++ b/.github/helm/affine/charts/gcloud-sql-proxy/values.yaml @@ -1,4 +1,4 @@ -replicaCount: 3 +replicaCount: 2 enabled: false database: connectionName: "" @@ -33,8 +33,11 @@ service: resources: limits: - memory: "4Gi" - cpu: "2" + memory: "1Gi" + cpu: "1" + requests: + memory: "512Mi" + cpu: "100m" volumes: [] volumeMounts: []