Skip to content

Commit f7e4fa1

Browse files
committed
Fixed
1 parent d5084ff commit f7e4fa1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/e2e-prow/rhoai/scripts/get-pod-info.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# --- CONFIGURATION ---
5-
NAMESPACE="${NAMESPACE:-e2e-rhoai-dsc}"
5+
NAMESPACE="e2e-rhoai-dsc"
66
ISVC_NAME="${1:-vllm-model}"
77
ENV_FILE="${ENV_FILE:-pod.env}"
88

@@ -21,7 +21,7 @@ until [ -n "$POD_NAME" ] || [ $ELAPSED -ge $TIMEOUT ]; do
2121
POD_NAME=$(oc get pods -n "$NAMESPACE" \
2222
-l "serving.kserve.io/inferenceservice=$ISVC_NAME" \
2323
-o jsonpath="{.items[?(@.status.phase=='Running')].metadata.name}" 2>/dev/null)
24-
echo "Waiting for pod $POD_NAME"
24+
echo "Waiting for pod $POD_NAME in namespace $NAMESPACE"
2525

2626
oc describe pod $POD_NAME -n $NAMESPACE
2727
oc logs $POD_NAME -n $NAMESPACE

0 commit comments

Comments
 (0)