We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e292d12 commit c08797eCopy full SHA for c08797e
2 files changed
tests/e2e-prow/rhoai/manifests/test-pod/spin-up.yaml
@@ -12,6 +12,11 @@ spec:
12
secretKeyRef:
13
name: lcs-ip-secret
14
key: key
15
+ - name: LLAMA_IP
16
+ valueFrom:
17
+ secretKeyRef:
18
+ name: llama-stack-ip-secret
19
+ key: key
20
image: registry.access.redhat.com/ubi9/python-312
21
command: ["/bin/sh", "/scripts/run-tests.sh"]
22
volumeMounts:
tests/e2e-prow/rhoai/run-tests.sh
@@ -1,4 +1,4 @@
1
-git clone https://github.com/are-ces/lightspeed-stack.git
+git clone https://github.com/lightspeed-core/lightspeed-stack.git
2
cd lightspeed-stack
3
4
echo "pod started"
@@ -13,5 +13,8 @@ echo "Installing test dependencies..."
pip install uv
uv sync
+export E2E_LSC_HOSTNAME=$LCS_IP
+export E2E_LLAMA_HOSTNAME=$LLAMA_IP
+
echo "Running comprehensive e2e test suite..."
make test-e2e
0 commit comments