From 34e428cff3574277312aa9186f90fc97f073fcac Mon Sep 17 00:00:00 2001 From: Flavius Lacatusu Date: Mon, 29 Mar 2021 10:35:17 +0200 Subject: [PATCH] fix --- .github/bin/common.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/bin/common.sh b/.github/bin/common.sh index 47edb1113..ff83f4e0d 100755 --- a/.github/bin/common.sh +++ b/.github/bin/common.sh @@ -401,12 +401,3 @@ waitWorkspaceStartedDevWorkspaceController() { createWorkspaceDevWorkspaceCheOperator() { oc apply -f https://raw.githubusercontent.com/che-incubator/devworkspace-che-operator/main/samples/flattened_theia-nodejs.yaml -n ${NAMESPACE} } - -installOlm() { - echo "[INFO] Installing test pre-requisistes" - IFS=$'\n' read -d '' -r -a olmApiGroups < <( kubectl api-resources --api-group=operators.coreos.com -o name ) || true - if [ -z "${olmApiGroups[*]}" ]; then - OLM_VERSION=v0.17.0 - curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/${OLM_VERSION}/install.sh | bash -s ${OLM_VERSION} - fi -}