From 4bf4ff6569176284500711030de1ab01ff3d29d0 Mon Sep 17 00:00:00 2001 From: Laurent Luce Date: Tue, 22 Oct 2024 11:44:34 -0400 Subject: [PATCH] Account for the gateway istio pod --- .github/workflows/ci-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 5be84bd..55315b0 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -55,8 +55,8 @@ jobs: - name: Validate that the boutique demo is up and running run: | set -x - # Check that the four baseline service pods are running and ready - while [ $(kubectl get pods -n baseline --no-headers -o custom-columns=NAMESPACE:metadata.namespace,POD:metadata.name,PodIP:status.podIP,READY-true:status.containerStatuses[*].ready | grep "true" | wc -l) -ne 4 ] + # Check that the four baseline service pods + gateway istio pod are running and ready + while [ $(kubectl get pods -n baseline --no-headers -o custom-columns=NAMESPACE:metadata.namespace,POD:metadata.name,PodIP:status.podIP,READY-true:status.containerStatuses[*].ready | grep "true" | wc -l) -ne 5 ] do echo "Waiting for baseline pods to run, iteration number $c..." kubectl get pods -n baseline -o custom-columns=NAMESPACE:metadata.namespace,POD:metadata.name,PodIP:status.podIP,READY-true:status.containerStatuses[*].ready