From cafca82dd47db916ba33fc206beacae962e71de2 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 18 Jan 2026 10:15:59 -0600 Subject: [PATCH] scale: increase production replicas to 4 pods With Horde's distributed supervision, devices will automatically distribute ~25% per pod across all 4 replicas. Benefits: - 4x horizontal scaling for device monitoring and SNMP polling - Better fault tolerance (can lose 3 pods and still operate) - Automatic load balancing via consistent hashing - Each device still polls from exactly ONE pod (no duplicates) --- k8s/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 925161eb..95f6e8aa 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -5,7 +5,7 @@ metadata: name: towerops namespace: towerops spec: - replicas: 2 + replicas: 4 strategy: type: RollingUpdate rollingUpdate: