#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.
This commit is contained in:
Guillaume "B.B." Van Hemmen 2024-12-27 15:26:47 +01:00
parent 8ed8495f92
commit d1cde8e470

View file

@ -12,7 +12,7 @@ metadata:
name: whoami name: whoami
namespace: whoami namespace: whoami
spec: spec:
replicas: 3 replicas: 2
selector: selector:
matchLabels: matchLabels:
app: whoami app: whoami