From 81fb4675f9fd9d81d7bae119de7c047059ad4226 Mon Sep 17 00:00:00 2001 From: "A. F. Dudley" Date: Tue, 20 Jan 2026 06:06:47 -0500 Subject: [PATCH] Increase default container resources to 4 CPUs and 8GB memory Solana/Agave validators require at least 2 CPU threads for the ip-echo-server. Increased defaults to support more resource-intensive workloads. Co-Authored-By: Claude Opus 4.5 --- stack_orchestrator/deploy/k8s/cluster_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stack_orchestrator/deploy/k8s/cluster_info.py b/stack_orchestrator/deploy/k8s/cluster_info.py index 9489e291..3a9a13e5 100644 --- a/stack_orchestrator/deploy/k8s/cluster_info.py +++ b/stack_orchestrator/deploy/k8s/cluster_info.py @@ -34,8 +34,8 @@ DEFAULT_VOLUME_RESOURCES = Resources({ }) DEFAULT_CONTAINER_RESOURCES = Resources({ - "reservations": {"cpus": "0.1", "memory": "200M"}, - "limits": {"cpus": "1.0", "memory": "2000M"}, + "reservations": {"cpus": "1.0", "memory": "2000M"}, + "limits": {"cpus": "4.0", "memory": "8000M"}, })