From 13569f706d7b862ddd88c88b10521eb50ea397f2 Mon Sep 17 00:00:00 2001 From: Shahab Dogar Date: Mon, 5 Jan 2026 14:51:31 +0500 Subject: [PATCH] fix: scale down cache servers to 1 instance each --- cache-infrastructure/go/values.yaml | 2 +- cache-infrastructure/nix/index.ts | 2 +- cache-infrastructure/npm/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cache-infrastructure/go/values.yaml b/cache-infrastructure/go/values.yaml index 6aad618..c1e4e3d 100644 --- a/cache-infrastructure/go/values.yaml +++ b/cache-infrastructure/go/values.yaml @@ -1,4 +1,4 @@ -replicaCount: 3 +replicaCount: 1 image: runAsNonRoot: true nodeSelector: diff --git a/cache-infrastructure/nix/index.ts b/cache-infrastructure/nix/index.ts index 4f8cc7c..04e2e62 100644 --- a/cache-infrastructure/nix/index.ts +++ b/cache-infrastructure/nix/index.ts @@ -73,7 +73,7 @@ export class NixCache extends Construct { namespace, }, spec: { - replicas: "3", + replicas: "1", selector: { matchLabels: { app: name, diff --git a/cache-infrastructure/npm/index.ts b/cache-infrastructure/npm/index.ts index 0d8709b..f3df03d 100644 --- a/cache-infrastructure/npm/index.ts +++ b/cache-infrastructure/npm/index.ts @@ -70,7 +70,7 @@ export class NpmCache extends Construct { namespace, }, spec: { - replicas: "3", + replicas: "1", selector: { matchLabels: { app: name,