From 36c880475ab24069b59b324863a0f1b5b080bd57 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 eae64d79f9..e5d73f996a 100755 --- a/test/e2e-common.sh +++ b/test/e2e-common.sh @@ -41,7 +41,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"