Skip to content

Commit 217bf7b

Browse files
committed
fixup and lower ginkgo nodes
1 parent 09a681e commit 217bf7b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

hack/e2e.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,12 @@ fi
141141
function wait_for_vsphere_reachable() {
142142
local n=0
143143
until [ $n -ge 30 ]; do
144-
curl "https://${VSPHERE_SERVER}" --connect-timeout 2 -k && RET=$? || RET=$?
144+
curl -s -v "https://${VSPHERE_SERVER}/sdk" --connect-timeout 2 -k && RET=$? || RET=$?
145145
if [[ "$RET" -eq 0 ]]; then
146146
break
147147
fi
148148
n=$((n + 1))
149+
echo "Failed to reach https://${VSPHERE_SERVER}/sdk. Retrying in 1s ($n/30)"
149150
sleep 1
150151
done
151152
return "$RET"
@@ -156,7 +157,7 @@ if [[ ! "${GINKGO_FOCUS:-}" =~ $RE_VCSIM ]]; then
156157
fi
157158

158159
# Make tests run in-parallel
159-
export GINKGO_NODES=5
160+
export GINKGO_NODES=4
160161

161162
# Only run the boskos/check for IPAM when we need them (not for vcsim)
162163
if [[ ! "${GINKGO_FOCUS:-}" =~ $RE_VCSIM ]]; then

0 commit comments

Comments
 (0)