From 9d1e4b153ce2967a02fb83ba208c224b7120cc98 Mon Sep 17 00:00:00 2001 From: gmarek Date: Thu, 21 Jan 2016 15:55:36 +0100 Subject: [PATCH] Slightly change warning printed when not all nodes are ready in validate-cluster. --- cluster/validate-cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/validate-cluster.sh b/cluster/validate-cluster.sh index c007819155e..017ba477a54 100755 --- a/cluster/validate-cluster.sh +++ b/cluster/validate-cluster.sh @@ -57,7 +57,7 @@ while true; do else # Set the timeout to ~25minutes (100 x 15 second) to avoid timeouts for 1000-node clusters. if (( attempt > 100 )); then - echo -e "${color_red}Detected ${ready} ready nodes, found ${found} nodes out of expected ${EXPECTED_NUM_NODES}. Your cluster may not be working.${color_norm}" + echo -e "${color_red}Detected ${ready} ready nodes, found ${found} nodes out of expected ${EXPECTED_NUM_NODES}. Your cluster may not be fully functional.${color_norm}" "${KUBE_ROOT}/cluster/kubectl.sh" get nodes exit 2 else