From ea6e653db1dd2327ff2d6d701fa6b92bc4e85d0e Mon Sep 17 00:00:00 2001 From: Abhijit Hoskeri Date: Tue, 5 Apr 2022 16:39:20 -0700 Subject: [PATCH] conformance-test: use kubelet healthz port. The readonly port could be disabled. Since we are only using the /healthz endpoint, we can use the healthz port. Change-Id: If004f2888ca5847b9e2d8c02d5615bed52d94b24 --- test/e2e_node/conformance/run_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e_node/conformance/run_test.sh b/test/e2e_node/conformance/run_test.sh index 1e1c98f4787..f4037049925 100755 --- a/test/e2e_node/conformance/run_test.sh +++ b/test/e2e_node/conformance/run_test.sh @@ -126,10 +126,10 @@ start_kubelet() { fi } -# wait_kubelet retries for 10 times for kubelet to be ready by checking http://127.0.0.1:10255/healthz. +# wait_kubelet retries for 10 times for kubelet to be ready by checking http://127.0.0.1:10248/healthz. wait_kubelet() { echo "Health checking kubelet..." - healthCheckURL=http://127.0.0.1:10255/healthz + healthCheckURL=http://127.0.0.1:10248/healthz local maxRetry=10 local cur=1 while [ $cur -le $maxRetry ]; do