From a671b3fc6e514929ca43e1e73aa7bb4a0877b680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 26 Mar 2024 12:17:29 +0100 Subject: [PATCH] tests: Use full svc address to check kbs service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the service might not listen on the default port, use the full service address to ensure we are talking to the right resource. Signed-off-by: Lukáš Doktor --- tests/integration/kubernetes/confidential_kbs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/kubernetes/confidential_kbs.sh b/tests/integration/kubernetes/confidential_kbs.sh index a3e95d3b2d..bacbc8f974 100644 --- a/tests/integration/kubernetes/confidential_kbs.sh +++ b/tests/integration/kubernetes/confidential_kbs.sh @@ -269,7 +269,7 @@ function kbs_k8s_deploy() { if [ -n "$ingress" ]; then echo "::group::Check the kbs service is exposed" - svc_host=$(kbs_k8s_svc_host) + svc_host=$(kbs_k8s_svc_http_addr) if [ -z "$svc_host" ]; then echo "ERROR: service host not found" return 1