From 9446a6f4f5c1a464b1cbb77b6e441352dad0d0e3 Mon Sep 17 00:00:00 2001 From: Etai Lev Ran Date: Thu, 24 Apr 2025 16:34:22 +0300 Subject: [PATCH] minor fixes in instructions - notes regarding use of existing images - fixed wrong service name Signed-off-by: Etai Lev Ran --- DEVELOPMENT.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 8b6cf443..e9a3e980 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -193,6 +193,9 @@ export EPP_IMAGE="/" export EPP_TAG="" ``` +> NOTE: you can set above images to the prebuilt images on quay.io. +> Just note that the EPP image is not using the `/epp` suffix. + Once all this is set up, you can deploy the environment: ```console @@ -203,7 +206,7 @@ This will deploy the entire stack to whatever namespace you chose. You can test by exposing the inference `Gateway` via port-forward: ```console -kubectl -n ${NAMESPACE} port-forward service/inference-gateway-istio 8080:80 +kubectl -n ${NAMESPACE} port-forward service/inference-gateway 8080:80 ``` And making requests with `curl`: