From d99d2062625653e0c95ae6c7ebe2fbfd2d5af86f Mon Sep 17 00:00:00 2001 From: Pranav Salunke Date: Mon, 19 Jan 2015 20:34:29 +0100 Subject: [PATCH] Fix test case for cinder volumes The verification step (test) in setup_cinder_volumes fails because the compute node does not have access to the api network (noticed with KVM; our VirtualBox setup hides the problem). This changeset adds helper functions that allow scripts to make ssh calls into other node VMs. The script, setup_cinder_volumes.sh, now runs the tests on the controller node. Change-Id: I79da47d829ed387f510318d27ec919af575344c3 Co-Authored-By: Roger Luethi --- labs/lib/functions.guest | 19 +++++++++++++++++++ labs/scripts/setup_cinder_volumes.sh | 15 +++++++++------ 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/labs/lib/functions.guest b/labs/lib/functions.guest index 1e7c9019..e752e10a 100644 --- a/labs/lib/functions.guest +++ b/labs/lib/functions.guest @@ -361,6 +361,25 @@ function config_network { done } +#------------------------------------------------------------------------------- +# ssh wrapper functions +#------------------------------------------------------------------------------- + +function no_chk_ssh { + echo >&2 "ssh $@" + # Options set to disable strict host key checking and related messages. + ssh \ + -o "UserKnownHostsFile /dev/null" \ + -o "StrictHostKeyChecking no" \ + -o LogLevel=error \ + "$@" +} + +# ssh from one node VM to another node in the cluster +function node_ssh { + no_chk_ssh -i "$HOME/.ssh/vagrant" "$@" +} + #------------------------------------------------------------------------------- fix_path_env source_deploy diff --git a/labs/scripts/setup_cinder_volumes.sh b/labs/scripts/setup_cinder_volumes.sh index ce21a243..a60c7fa5 100755 --- a/labs/scripts/setup_cinder_volumes.sh +++ b/labs/scripts/setup_cinder_volumes.sh @@ -100,20 +100,23 @@ sudo service tgt restart # Verify the Block Storage installation #------------------------------------------------------------------------------ +echo "Verifying Block Storage installation on controller node." + echo "Waiting for cinder to start." -until cinder list >/dev/null 2>&1; do +AUTH='source config/$CONFIG_DIR/admin-openstackrc.sh' +until node_ssh controller-mgmt "$AUTH; cinder list" >/dev/null 2>&1; do sleep 1 done echo "cinder create --display-name labsVolume 1" -cinder create --display-name labsVolume 1 +node_ssh controller-mgmt "$AUTH; cinder create --display-name labsVolume 1" echo "cinder list" -cinder list +# FIXME check Status column (may be creating, available, or error) +node_ssh controller-mgmt "$AUTH; cinder list" echo "cinder delete labsVolume" -cinder delete labsVolume +node_ssh controller-mgmt "$AUTH; cinder delete labsVolume" echo "cinder list" -cinder list - +node_ssh controller-mgmt "$AUTH; cinder list"