From bbf0e050a64297fcd9df515f3136ffaa5ee09c38 Mon Sep 17 00:00:00 2001 From: Fatih Degirmenci Date: Mon, 12 Mar 2018 14:08:40 +0100 Subject: [PATCH] xci: Skip functest healtcheck if it is Kubernetes scenario We need to work on functest healthcheck for Kubernetes scenarios. Until we get it working, healthcheck is disabled. Change-Id: If470dbe956c5859825f0829d1f8d022bdafcc242 Signed-off-by: Fatih Degirmenci --- jjb/xci/xci-run-functest.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jjb/xci/xci-run-functest.sh b/jjb/xci/xci-run-functest.sh index d57a6259c..1bc569aef 100755 --- a/jjb/xci/xci-run-functest.sh +++ b/jjb/xci/xci-run-functest.sh @@ -23,6 +23,12 @@ if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]]; then exit 0 fi +# skip the healthcheck if the scenario is Kubernetes scenario +if [[ "$DEPLOY_SCENARIO" =~ k8 ]]; then + echo "Skipping the healthcheck!" + exit 0 +fi + # if the scenario is external, we need to wipe WORKSPACE to place releng-xci there since # the project where the scenario is coming from is cloned and the patch checked out to the # xci/scenarios/$DEPLOY_SCENARIO to be synched on clean VM -- 2.16.6