From 0f4a8da217364b489c57f446d2c68bf3046e82b0 Mon Sep 17 00:00:00 2001 From: Anurag Mittal Date: Thu, 14 Nov 2024 06:17:13 +0100 Subject: [PATCH] script fixup --- .github/scripts/verify_helm_install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/verify_helm_install.sh b/.github/scripts/verify_helm_install.sh index a448ac59..3b4ece8c 100644 --- a/.github/scripts/verify_helm_install.sh +++ b/.github/scripts/verify_helm_install.sh @@ -15,11 +15,11 @@ if ! kubectl wait --for=condition=Ready pod -l app.kubernetes.io/name=scality-co exit 1 fi -log_and_run echo "Verifying COSI driver Pod status..." +echo "Verifying COSI driver Pod status..." if ! kubectl wait --namespace $NAMESPACE --for=condition=ready pod --selector=app.kubernetes.io/name=scality-cosi-driver --timeout=30s; then - echo "Error: COSI driver Pod did not reach ready state." | tee -a "$LOG_FILE" + echo "Error: COSI driver Pod did not reach ready state." exit 1 fi -log_and_run kubectl get pods -n $NAMESPACE +kubectl get pods -n $NAMESPACE echo "Helm installation verified successfully."