From a066303b81c94ef15b1f060b8be76ce8ffc38d24 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 12 Sep 2025 09:48:46 -0500 Subject: [PATCH] ci: Raise pod resource requirements Push the resource requests higher to try to convince Kubernetes to run the builds on cloud nodes instead of Raspberry Pis. --- ci/podTemplate.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/podTemplate.yaml b/ci/podTemplate.yaml index 898b9b8..8fcf7e2 100644 --- a/ci/podTemplate.yaml +++ b/ci/podTemplate.yaml @@ -6,8 +6,10 @@ spec: stdin: true tty: true resources: - requests: - cpu: 1500m + requests: &resources + cpu: 6 + memory: 4Gi + limits: *resources volumeMounts: - mountPath: /etc/ssh/ssh_known_hosts name: ssh-known-hosts