Merge v8.0 into master 27/9627/2
authorbeierlm <mark.beierl@canonical.com>
Fri, 26 Jun 2020 18:57:09 +0000 (14:57 -0400)
committerbeierlm <mark.beierl@canonical.com>
Fri, 21 Aug 2020 17:22:39 +0000 (13:22 -0400)
Test contributions from master
Fix permission for devops-stages files (+x)
Adding the repository to CI/CD pipeline
Adding VIM to OSM option
Adding BRANCH_NAME variable for release tests
Adding prometheus_host env variable for ci/cd

git cherry-pick -n e1a9c5709cce246d2cca273be7d8f61b8404efea^..72556ca8d5a07199c182a586688bbebe8cf1cfad

Author: Felipe Vicens <felipe.vicens@atos.net>
Signed-off-by: beierlm <mark.beierl@canonical.com>
Adds test EPA-01 for SR-IOV

Signed-off-by: garciaale <agarcia@whitestack.com>
Retry vim-create

Sometimes it appears that the vim-create command gets issued
before LCM is properly ready, so as a workaround, this tries
a number of times to create the VIM before giving up.

Signed-off-by: beierlm <mark.beierl@canonical.com>
Fixing Logic

Breaks out of the loop once the vim is enabled

Signed-off-by: Mark Beierl <mark.beierl@canonical.com>
Added test [K8s-04] OpenLDAP

Signed-off-by: ramonsalguer <javier.ramon@telefonica.com>
==================================================================

Signed-off-by: Mark Beierl <mark.beierl@canonical.com>
Change-Id: Id436df42b735aa856e946c5c693f291bd0ba2d44

robot-systest/run_test.sh

index 7e96d92..a279ff0 100755 (executable)
@@ -33,24 +33,40 @@ download_packages(){
 }
 
 create_vim(){
-    echo -e "\nCreating VIM ${VIM_TARGET}"
-    osm vim-create --name ${VIM_TARGET} --user ${OS_USERNAME} --password ${OS_PASSWORD} --tenant ${OS_PROJECT_NAME} \
-                   --auth_url ${OS_AUTH_URL} --account_type openstack --description vim \
-                   --config "{management_network_name: ${VIM_MGMT_NET}, dataplane_physical_net: ${DATAPLANE:-physnet2}}" || true
-    STATUS="PROCESSING"
-    i=0
-    while [[ ${STATUS} != "ENABLED" ]]
-    do
-        ((i++))
-        if [[ $i -eq 5 ]]; then
-            echo "VIM stuck in PROCESSING after 100 seconds"
-            exit 1
+
+    attempts=3
+    while [ $attempts -ge 0 ] ; do
+        echo -e "\n$( date '+%F_%H:%M:%S' ) Creating VIM ${VIM_TARGET}"
+        osm vim-create --name ${VIM_TARGET} --user ${OS_USERNAME} --password ${OS_PASSWORD} --tenant ${OS_PROJECT_NAME} \
+                       --auth_url ${OS_AUTH_URL} --account_type openstack --description vim \
+                       --config "{management_network_name: ${VIM_MGMT_NET}, dataplane_physical_net: ${DATAPLANE:-physnet2}}" || true
+        STATUS="PROCESSING"
+        i=0
+        while [[ ${STATUS} != "ENABLED" ]]
+        do
+            ((i++))
+            if [[ $i -eq 5 ]]; then
+                echo "VIM stuck in PROCESSING after 50 seconds"
+                osm vim-delete ${VIM_TARGET}
+                sleep 5
+                break
+            fi
+            sleep 10
+            STATUS=`osm vim-list --long | grep ${VIM_TARGET} | awk '{print $9}'`
+        done
+        if [[ ${STATUS} = "ENABLED" ]] ; then
+            break
         fi
-        sleep 20
-        STATUS=`osm vim-list --long | grep ${VIM_TARGET} | awk '{print $9}'`
+        ((attempts--))
     done
+
+    if [ $attempts -lt 0 ] ; then
+        echo "VIM failed to enter ENABLED state"
+        exit 1
+    fi
 }
 
+
 PARAMS=""
 
 while (( "$#" )); do