Skip to content

Commit a7e8c8c

Browse files
authored
Merge pull request #18065 from serathius/addons-sleep
Use sleep instead of wait for large clusters
2 parents 4607dcc + 2279d7e commit a7e8c8c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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)