diff --git a/tools/check_devstack_plugin.sh b/tools/check_devstack_plugin.sh new file mode 100755 index 000000000..1a8305d4c --- /dev/null +++ b/tools/check_devstack_plugin.sh @@ -0,0 +1,13 @@ +#!/bin/bash -ex + +# Sleep long enough for the below checks to have a chance +# at being completed. +sleep 15m +# Check that snapshot image built +nodepool image-list | grep ready | grep trusty-server +# check that dib image built +nodepool image-list | grep ready | grep ubuntu-dib +# check snapshot image was bootable +nodepool list | grep ready | grep trusty-server +# check dib image was bootable +nodepool list | grep ready | grep ubuntu-dib