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.
2 parents 44526f3 + 9b184ec commit b74e14fCopy full SHA for b74e14f
server.sh
@@ -246,9 +246,11 @@ for driver in "${!drivers[@]}"; do
246
247
if [ "$os_user" != '' ]; then
248
echo "Testing connectivity from the instance ${name}"
249
- sleep 20
+ sleep 60
250
if ! ssh -o ConnectTimeout=30 -o StrictHostKeyChecking=no "$os_user"@"$fip_address" ping -c 1 1.1.1.1; then
251
- echo "Error when running a ping from the instance..."
+ echo "Error when running a ping from the instance. Dumping instance console..."
252
+ openstack console log show "$name" || true
253
+ echo "Done"
254
exit 1
255
fi
256
@@ -265,4 +267,3 @@ else
265
267
read pause
266
268
269
-
0 commit comments