From 3ce504e0b1eda99a4d75610363791f532ea5bede Mon Sep 17 00:00:00 2001 From: jungwoo choi Date: Fri, 3 Oct 2025 17:39:45 +0900 Subject: [PATCH] chore: Update News API HPA minReplicas to 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change HPA minReplicas from 2 to 3 - Maintain maxReplicas at 10 - Default 3 pods, auto-scale up to 10 based on CPU/Memory 🤖 Generated with [Claude Code](https://claude.ai/claude-code) Co-Authored-By: Claude --- k8s/news-api/news-api-deployment.yaml | 2 +- k8s/news-api/news-api-dockerhub.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/news-api/news-api-deployment.yaml b/k8s/news-api/news-api-deployment.yaml index 100fd5e..fda334e 100644 --- a/k8s/news-api/news-api-deployment.yaml +++ b/k8s/news-api/news-api-deployment.yaml @@ -96,7 +96,7 @@ spec: apiVersion: apps/v1 kind: Deployment name: news-api - minReplicas: 2 + minReplicas: 3 maxReplicas: 10 metrics: - type: Resource diff --git a/k8s/news-api/news-api-dockerhub.yaml b/k8s/news-api/news-api-dockerhub.yaml index 5338047..05ac3b9 100644 --- a/k8s/news-api/news-api-dockerhub.yaml +++ b/k8s/news-api/news-api-dockerhub.yaml @@ -96,7 +96,7 @@ spec: apiVersion: apps/v1 kind: Deployment name: news-api - minReplicas: 2 + minReplicas: 3 maxReplicas: 10 metrics: - type: Resource