From d61c23f391972f0e3d7f3f2aa1a01f09f89a2f73 Mon Sep 17 00:00:00 2001 From: Matthew Mattox Date: Thu, 16 May 2024 23:51:06 -0500 Subject: [PATCH] Helm chart notrespecting the replica count --- charts/go-web-cache/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/go-web-cache/templates/deployment.yaml b/charts/go-web-cache/templates/deployment.yaml index 4b7cfe2..77f7b15 100644 --- a/charts/go-web-cache/templates/deployment.yaml +++ b/charts/go-web-cache/templates/deployment.yaml @@ -9,7 +9,7 @@ metadata: prometheus.io/port: "9000" prometheus.io/path: "/metrics" spec: - replicas: 1 + replicas: {{ .Values.replicaCount }} selector: matchLabels: app: "go-web-cache"