From 3ac483c8260c8a419bca7c76a1fce6803b358623 Mon Sep 17 00:00:00 2001 From: yaacov Date: Mon, 5 Aug 2024 19:14:58 +0300 Subject: [PATCH] In start console CI script remove un used schema Signed-off-by: yaacov --- ci/start-console.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/start-console.sh b/ci/start-console.sh index 92a09f770..010d36158 100755 --- a/ci/start-console.sh +++ b/ci/start-console.sh @@ -16,8 +16,8 @@ CONSOLE_PORT=${CONSOLE_PORT:-9000} # Look for forklift routes if oc_available_loggedin; then routes=$(oc get routes -A -o template --template='{{range .items}}{{.spec.host}}{{"\n"}}{{end}}' 2>/dev/null || true) - INVENTORY_SERVER_HOST=https://${INVENTORY_SERVER_HOST:-$(echo "$routes" | grep forklift-inventory)} - SERVICES_API_SERVER_HOST=https://${SERVICES_API_SERVER_HOST:-$(echo "$routes" | grep forklift-services)} + INVENTORY_SERVER_HOST=${INVENTORY_SERVER_HOST:-$(echo "$routes" | grep forklift-inventory)} + SERVICES_API_SERVER_HOST=${SERVICES_API_SERVER_HOST:-$(echo "$routes" | grep forklift-services)} fi # Default to localhost if no route found