We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6483cad commit c215ee2Copy full SHA for c215ee2
1 file changed
tests/e2e-prow/rhoai/scripts/deploy-services.sh
@@ -4,8 +4,12 @@ BASE_DIR="$1"
4
5
oc apply -f "$BASE_DIR/config/lightspeed/llama-stack.yaml"
6
7
+oc wait pod/llama-stack-service \
8
+-n e2e-rhoai-dsc --for=condition=Ready --timeout=300s
9
+
10
# Get IP address of llama-stack pod
11
LLAMA_IP=$(oc get pod llama-stack-service -n e2e-rhoai-dsc -o jsonpath='{.status.podIP}')
12
+echo "PRINTING LLAMA_IP: $LLAMA_IP"
13
oc create secret generic llama-stack-ip-secret \
14
--from-literal=key="$LLAMA_IP" \
15
-n e2e-rhoai-dsc || echo "Secret exists"
0 commit comments