From 2630d3091efdfb87dd121b81db04063056f41f47 Mon Sep 17 00:00:00 2001 From: Fatih Degirmenci Date: Wed, 22 Mar 2017 13:43:00 +0100 Subject: xci: Fix grep, switch to opnfv playbook and log playbooks to console Change-Id: I4a576d45b71267f672e55c93e4f0c95410af019a Signed-off-by: Fatih Degirmenci --- prototypes/openstack-ansible/scripts/osa-deploy.sh | 39 ++++++++++++---------- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/prototypes/openstack-ansible/scripts/osa-deploy.sh b/prototypes/openstack-ansible/scripts/osa-deploy.sh index d30cf1b7b..ec607443b 100755 --- a/prototypes/openstack-ansible/scripts/osa-deploy.sh +++ b/prototypes/openstack-ansible/scripts/osa-deploy.sh @@ -29,6 +29,7 @@ echo "* *" echo "* Configure XCI Master *" echo "* *" echo "* Bootstrap xci-master, configure network, clone openstack-ansible *" +echo "* Playbooks: configure-xcimaster.yml *" echo "* *" echo "***********************************************************************" echo -e "\n" @@ -36,6 +37,7 @@ echo -e "\n" cd ../playbooks/ # this will prepare the jump host # git clone the Openstack-Ansible, bootstrap and configure network +echo "xci: running ansible playbook configure-xcimaster.yml" sudo -E ansible-playbook -i inventory configure-xcimaster.yml echo "XCI Master is configured successfully!" @@ -47,12 +49,14 @@ echo "* *" echo "* Configure Nodes *" echo "* *" echo "* Configure network on OpenStack Nodes, configure NFS *" +echo "* Playbooks: configure-targethosts.yml *" echo "* *" echo "***********************************************************************" echo -e "\n" # this will prepare the target host # such as configure network and NFS +echo "xci: running ansible playbook configure-targethosts.yml" sudo -E ansible-playbook -i inventory configure-targethosts.yml echo "Nodes are configured successfully!" @@ -64,33 +68,33 @@ echo "* *" echo "* Set Up OpenStack Nodes *" echo "* *" echo "* Set up OpenStack Nodes using openstack-ansible *" +echo "* Playbooks: setup-hosts.yml, setup-infrastructure.yml *" echo "* *" echo "***********************************************************************" echo -e "\n" # using OpenStack-Ansible deploy the OpenStack - +echo "xci: running ansible playbook setup-hosts.yml" sudo -E /bin/sh -c "ssh root@$XCIMASTER_IP openstack-ansible \ $PLAYBOOK_PATH/setup-hosts.yml" | \ - tee $LOG_PATH/setup-host.log + tee $LOG_PATH/setup-hosts.log -#check the result of openstack-ansible setup-hosts.yml -#if failed, exit with exit code 1 -grep "failed=1" $LOG_PATH/setup-host.log>/dev/null \ - || grep "unreachable=1" $LOG_PATH/setup-host.log>/dev/null -if [ $? -eq 0 ]; then +# check the result of openstack-ansible setup-hosts.yml +# if failed, exit with exit code 1 +if grep -q 'failed=1\|unreachable=1' $LOG_PATH/setup-hosts.log; then echo "OpenStack node setup failed!" exit 1 fi +echo "xci: running ansible playbook setup-infrastructure.yml" sudo -E /bin/sh -c "ssh root@$XCIMASTER_IP openstack-ansible \ $PLAYBOOK_PATH/setup-infrastructure.yml" | \ tee $LOG_PATH/setup-infrastructure.log -grep "failed=1" $LOG_PATH/setup-infrastructure.log>/dev/null \ - || grep "unreachable=1" $LOG_PATH/setup-infrastructure.log>/dev/null -if [ $? -eq 0 ]; then - echo "failed setup infrastructure!" +# check the result of openstack-ansible setup-infrastructure.yml +# if failed, exit with exit code 1 +if grep -q 'failed=1\|unreachable=1' $LOG_PATH/setup-infrastructure.log; then + echo "OpenStack node setup failed!" exit 1 fi @@ -101,8 +105,7 @@ sudo -E /bin/sh -c "ssh root@$XCIMASTER_IP ansible -i $PLAYBOOK_PATH/inventory/ -a "mysql -h localhost -e 'show status like \"%wsrep_cluster_%\";'"" \ | tee $LOG_PATH/galera.log -grep "FAILED" $LOG_PATH/galera.log>/dev/null -if [ $? -eq 0 ]; then +if grep -q 'FAILED' $LOG_PATH/galera.log; then echo "Database cluster verification failed!" exit 1 else @@ -114,17 +117,17 @@ echo -e "\n" echo "***********************************************************************" echo "* *" echo "* Install OpenStack *" +echo "* Playbooks: opnfv-setup-openstack.yml *" echo "* *" echo "***********************************************************************" echo -e "\n" +echo "xci: running ansible playbook opnfv-setup-openstack.yml" sudo -E /bin/sh -c "ssh root@$XCIMASTER_IP openstack-ansible \ - $PLAYBOOK_PATH/setup-openstack.yml" | \ - tee $LOG_PATH/setup-openstack.log + $PLAYBOOK_PATH/opnfv-setup-openstack.yml" | \ + tee $LOG_PATH/opnfv-setup-openstack.log -grep "failed=1" $LOG_PATH/setup-openstack.log>/dev/null \ - || grep "unreachable=1" $LOG_PATH/setup-openstack.log>/dev/null -if [ $? -eq 0 ]; then +if grep -q 'failed=1\|unreachable=1' $LOG_PATH/opnfv-setup-openstack.log; then echo "OpenStack installation failed!" exit 1 else -- cgit 1.2.3-korg