From c4fe637e197966169af8f28287aec7dab843d744 Mon Sep 17 00:00:00 2001 From: David Eads Date: Thu, 2 Jul 2020 19:31:10 -0400 Subject: [PATCH] remove all changes for resourcewatch --- pkg/steps/clusterinstall/template.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkg/steps/clusterinstall/template.go b/pkg/steps/clusterinstall/template.go index f3ed86f8b83..094ee914221 100644 --- a/pkg/steps/clusterinstall/template.go +++ b/pkg/steps/clusterinstall/template.go @@ -322,21 +322,9 @@ objects: } function run-upgrade-tests() { - rwsupported=0 - openshift-tests run-resourcewatch --help > /dev/null 2>&1 || rwsupported=$? - if [[ $rwsupported -eq 0 ]]; then - # need to create namespace for lease acquisition - oc --kubeconfig=${KUBECONFIG} create namespace ci-operator-monitor || true - REPOSITORY_PATH=/resourcewatch openshift-tests run-resourcewatch --kubeconfig=${KUBECONFIG} --namespace=ci-operator-monitor & - rw_pid=$! - fi openshift-tests run-upgrade "${TEST_SUITE}" --to-image "${IMAGE:-${RELEASE_IMAGE_LATEST}}" \ --options "${TEST_OPTIONS:-}" \ --provider "${TEST_PROVIDER:-}" -o /tmp/artifacts/e2e.log --junit-dir /tmp/artifacts/junit - if [[ $rwsupported -eq 0 ]]; then - kill $rw_pid || true - tar -cf ${ARTIFACT_DIR}/resourcewatch.tar /resourcewatch || true - fi } function run-tests() {