Skip to content

Commit 2279d7e

Browse files
committed
Use sleep instead of wait for large clusters
1 parent 4607dcc commit 2279d7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/e2e/scenarios/scalability/pre-test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ if [[ "${CLOUD_PROVIDER}" == "gce" ]]; then
2626
--set=spec.maxSize=1 --set=spec.minSize=1 --set=spec.rootVolume.type=hyperdisk-balanced \
2727
--set=spec.image="${INSTANCE_IMAGE:-ubuntu-os-cloud/ubuntu-2404-noble-amd64-v20251001}"
2828
kops update cluster --yes
29-
kops validate cluster --wait 10m
29+
# TODO: Replaced with `kops validate instancegroup --wait 10m` when it's fixed for 5k node clusters.
30+
sleep 120 # should take around 2 minutes to get node read
3031
fi

0 commit comments

Comments
 (0)