From 7b89f417043736d2f0a67074fbbb813dd06f5241 Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Mon, 2 Feb 2026 14:37:55 -0600 Subject: [PATCH] Add PyPI cache config and bump memory in values-dev.yaml --- helm/orchard/values-dev.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/helm/orchard/values-dev.yaml b/helm/orchard/values-dev.yaml index d21257e..24e5de3 100644 --- a/helm/orchard/values-dev.yaml +++ b/helm/orchard/values-dev.yaml @@ -59,10 +59,10 @@ ingress: resources: limits: cpu: 500m - memory: 512Mi + memory: 768Mi requests: cpu: 200m - memory: 512Mi + memory: 768Mi livenessProbe: httpGet: @@ -124,6 +124,12 @@ orchard: mode: "presigned" presignedUrlExpiry: 3600 + # PyPI Cache Worker settings (reduced workers to limit memory usage) + pypiCache: + workers: 2 + maxDepth: 10 + maxAttempts: 3 + # Relaxed rate limits for dev/feature environments (allows integration tests to run) rateLimit: login: "1000/minute" # Default is 5/minute, relaxed for CI integration tests