From 6953319f7daa8a4fb87f7c643e413efa0fbddfad Mon Sep 17 00:00:00 2001 From: Frostebite Date: Mon, 5 Jan 2026 17:09:58 +0000 Subject: [PATCH] pr feedback - improve pod scheduling diagnostics and remove eviction thresholds that prevent scheduling --- .github/workflows/cloud-runner-integrity.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cloud-runner-integrity.yml b/.github/workflows/cloud-runner-integrity.yml index d1c595f2..3a33e427 100644 --- a/.github/workflows/cloud-runner-integrity.yml +++ b/.github/workflows/cloud-runner-integrity.yml @@ -64,12 +64,11 @@ jobs: run: | # Only delete if exists - don't aggressively clean up (may cause issues) k3d cluster delete unity-builder || true - # Create cluster with explicit eviction thresholds to prevent premature evictions - # host.k3d.internal will allow pods to access host services (LocalStack) + # Create cluster - host.k3d.internal will allow pods to access host services (LocalStack) + # Note: Removed eviction thresholds as they may prevent pod scheduling k3d cluster create unity-builder \ --agents 1 \ - --wait \ - --k3s-arg '--kubelet-arg=eviction-hard=imagefs.available<5%,memory.available<100Mi@agent:*' + --wait kubectl config current-context | cat - name: Verify cluster readiness and LocalStack connectivity timeout-minutes: 2