From ea5110246c41013536ab4977619b50b020e55c64 Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Fri, 24 Apr 2026 12:35:40 +1000 Subject: [PATCH] reorder wait command flags --- .github/workflows/release.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7478a835..6f8488c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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