Skip to content

Commit 8c22504

Browse files
improve: increase debug sleep time to 60 minutes
Extended the pod sleep time from 15 minutes to 60 minutes to provide more time for manual pod inspection and debugging without rushing.
1 parent b969159 commit 8c22504

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/test-cpu-32-runner.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,14 +200,14 @@ jobs:
200200
echo "⚠️ BUILDKITD_ADDR not set"
201201
fi
202202
203-
- name: Keep pod running for manual debugging (15 minutes)
203+
- name: Keep pod running for manual debugging (60 minutes)
204204
run: |
205205
echo ""
206206
echo "=========================================="
207-
echo "🛌 Pod is now sleeping for 15 minutes"
207+
echo "🛌 Pod is now sleeping for 60 minutes"
208208
echo "=========================================="
209209
echo ""
210-
echo "You have 15 minutes to:"
210+
echo "You have 60 minutes to:"
211211
echo " 1. Find the pod:"
212212
echo " kubectl get pods -n vllm-project -o wide"
213213
echo ""
@@ -218,13 +218,16 @@ jobs:
218218
echo " kubectl exec <pod-name> -n vllm-project -c runner -- which buildctl"
219219
echo " kubectl exec <pod-name> -n vllm-project -c runner -- ls -la ~/.docker/"
220220
echo " kubectl exec <pod-name> -n vllm-project -c runner -- env | grep BUILDKIT"
221+
echo " kubectl exec <pod-name> -n vllm-project -c runner -- ls -la /tmp/buildkit/"
221222
echo ""
222223
echo " 4. Open an interactive shell:"
223224
echo " kubectl exec -it <pod-name> -n vllm-project -c runner -- bash"
224225
echo ""
225226
echo "=========================================="
226227
echo "Sleep started: $(date)"
227-
sleep 900
228+
echo "Will sleep for 3600 seconds (60 minutes)"
229+
echo "=========================================="
230+
sleep 3600
228231
echo "Sleep ended: $(date)"
229232
echo "=========================================="
230233

0 commit comments

Comments
 (0)