reorder wait command flags

This commit is contained in:
E M 2026-04-24 12:35:40 +10:00
parent 4732b44e36
commit ea5110246c
No known key found for this signature in database

View File

@ -309,15 +309,17 @@ jobs:
- name: Wait for test pod to start
run: |
kubectl wait pod \
-l job-name=$NAMEPREFIX \
-n default \
kubectl wait \
--for=create \
--timeout=120s
kubectl wait pod \
pod \
-l job-name=$NAMEPREFIX \
-n default \
--timeout=120s
kubectl wait \
--for=condition=Ready \
pod \
-l job-name=$NAMEPREFIX \
-n default \
--timeout=300s
- name: Stream test logs