From 07b3c6dd481c80d67c247ced31ea3e535804c147 Mon Sep 17 00:00:00 2001 From: Guillaume Date: Wed, 14 Jun 2023 23:07:03 +0200 Subject: [PATCH] Fix test < sign --- scripts/2.first_start_k8s.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/2.first_start_k8s.sh b/scripts/2.first_start_k8s.sh index 9f8953c..9821d81 100755 --- a/scripts/2.first_start_k8s.sh +++ b/scripts/2.first_start_k8s.sh @@ -83,7 +83,7 @@ approve_kubelet_certificates() { kctl certificate approve $csrs fi ((tries--)) - if [ "$tries" < 1 ]; then + if [ "$tries" -lt "1" ]; then pinfo "Timeout waiting for kubelet certificates creation, please investigate why all nodes are not up by now" break fi