We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5941928 commit 31b54b7Copy full SHA for 31b54b7
hack/e2e.sh
@@ -149,6 +149,15 @@ function wait_for_vsphere_reachable() {
149
echo "Failed to reach https://${VSPHERE_SERVER}/sdk. Retrying in 1s ($n/30)"
150
sleep 1
151
done
152
+ if [ "$RET" -ne 0 ]; then
153
+ # Output some debug information in case of failing connectivity.
154
+ echo "$ ip link"
155
+ ip link
156
+ echo "# installing tcptraceroute to check route"
157
+ apt-get update && apt-get install -y tcptraceroute
158
+ echo "$ tcptraceroute ${VSPHERE_SERVER} 443"
159
+ tcptraceroute "${VSPHERE_SERVER}" 443
160
+ fi
161
return "$RET"
162
}
163
# Only run the boskos/check for IPAM when we need them (not for vcsim)
0 commit comments