We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5084ff commit f7e4fa1Copy full SHA for f7e4fa1
1 file changed
tests/e2e-prow/rhoai/scripts/get-pod-info.sh
@@ -2,7 +2,7 @@
2
set -e
3
4
# --- CONFIGURATION ---
5
-NAMESPACE="${NAMESPACE:-e2e-rhoai-dsc}"
+NAMESPACE="e2e-rhoai-dsc"
6
ISVC_NAME="${1:-vllm-model}"
7
ENV_FILE="${ENV_FILE:-pod.env}"
8
@@ -21,7 +21,7 @@ until [ -n "$POD_NAME" ] || [ $ELAPSED -ge $TIMEOUT ]; do
21
POD_NAME=$(oc get pods -n "$NAMESPACE" \
22
-l "serving.kserve.io/inferenceservice=$ISVC_NAME" \
23
-o jsonpath="{.items[?(@.status.phase=='Running')].metadata.name}" 2>/dev/null)
24
- echo "Waiting for pod $POD_NAME"
+ echo "Waiting for pod $POD_NAME in namespace $NAMESPACE"
25
26
oc describe pod $POD_NAME -n $NAMESPACE
27
oc logs $POD_NAME -n $NAMESPACE
0 commit comments