From fe483092505671030509c2a2ebc309813e92092a Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 21 Mar 2022 09:29:48 +0100 Subject: [PATCH] Use CI image `ko` instead of trying to install it Signed-off-by: Vincent Demeester --- test/e2e-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e-common.sh b/test/e2e-common.sh index 621c1eec89..3d87c5b8d0 100755 --- a/test/e2e-common.sh +++ b/test/e2e-common.sh @@ -40,7 +40,7 @@ function install_operator_resources() { echo ">> Deploying Tekton Operator Resources" - make TARGET=${TARGET:-kubernetes} apply || fail_test "Tekton Operator installation failed" + make KO_BIN=$(which ko) KUSTOMIZE_BIN=$(which kustomize) TARGET=${TARGET:-kubernetes} apply || fail_test "Tekton Operator installation failed" OPERATOR_NAMESPACE="tekton-operator" [[ "${TARGET}" == "openshift" ]] && OPERATOR_NAMESPACE="openshift-operators"