From d1cde8e4705349c8ef37b76d240e1c754257c97e Mon Sep 17 00:00:00 2001 From: "Guillaume B.B. Van Hemmen" Date: Fri, 27 Dec 2024 15:26:47 +0100 Subject: [PATCH] #0000 - Set replicas to 2 in deployment.yaml Reduced the number of replicas from 3 to 2 in the Kubernetes deployment configuration. This change is likely intended to optimize resource usage or adjust deployment scaling needs. --- deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment.yaml b/deployment.yaml index eca4b75..0a85bc5 100644 --- a/deployment.yaml +++ b/deployment.yaml @@ -12,7 +12,7 @@ metadata: name: whoami namespace: whoami spec: - replicas: 3 + replicas: 2 selector: matchLabels: app: whoami