Merge "Apex: disable functest for k8s deployment in gate job"
authorTim Rozet <trozet@redhat.com>
Tue, 12 Jun 2018 21:38:28 +0000 (21:38 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 12 Jun 2018 21:38:28 +0000 (21:38 +0000)
jjb/dovetail/dovetail-run.sh

index df681dd..fe82780 100755 (executable)
@@ -169,10 +169,14 @@ fi
 if [ -f ${DOVETAIL_CONFIG}/pod.yaml ]; then
     sudo chmod 666 ${DOVETAIL_CONFIG}/pod.yaml
     echo "Adapt process info for $INSTALLER_TYPE ..."
-    attack_process='rabbitmq'
+    if [ "$INSTALLER_TYPE" == "apex" ]; then
+        attack_process='rabbitmq_server'
+    else
+        attach_process='rabbitmq'
+    fi
     cat << EOF >> ${DOVETAIL_CONFIG}/pod.yaml
 process_info:
-- {testcase_name: dovetail.ha.tc010, attack_process: ${attack_process}}
+- {testcase_name: dovetail.ha.rabbitmq, attack_process: ${attack_process}}
 
 EOF
     echo "file ${DOVETAIL_CONFIG}/pod.yaml:"