From 7584627e18f2b843122b035a440cbaf289a57ae3 Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Thu, 2 Dec 2021 00:54:05 +0800 Subject: [PATCH] Ensure that Istio application endpoint is reachable from Meshery Signed-off-by: Xin Huang --- .github/workflows/scripts/istio_deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/istio_deploy.sh b/.github/workflows/scripts/istio_deploy.sh index 2f0eda1..f448b14 100644 --- a/.github/workflows/scripts/istio_deploy.sh +++ b/.github/workflows/scripts/istio_deploy.sh @@ -27,10 +27,10 @@ export SECURE_INGRESS_PORT=$(kubectl -n istio-system get service istio-ingressga export INGRESS_HOST=$(minikube ip) export GATEWAY_URL=http://$INGRESS_HOST:$INGRESS_PORT -minikube tunnel & +minikube tunnel &> /dev/null & echo "Service Mesh: $MESH_NAME - $SERVICE_MESH" echo "Gateway URL: $GATEWAY_URL" -echo "ENDPOINT_URL=$GATEWAY_URL" >> $GITHUB_ENV +echo "ENDPOINT_URL=$GATEWAY_URL/productpage" >> $GITHUB_ENV echo "SERVICE_MESH=$SERVICE_MESH" >> $GITHUB_ENV