From ab3447d0694a7bfb18e598966756212aebdca029 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Sat, 5 Dec 2020 13:21:10 +0000 Subject: [PATCH] e2e-intgration-tests: keep using OLM version 0.15.1 --- hack/tests/integration.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hack/tests/integration.sh b/hack/tests/integration.sh index 673c5e0f02d..b0be6164bdf 100755 --- a/hack/tests/integration.sh +++ b/hack/tests/integration.sh @@ -24,10 +24,11 @@ load_image_if_kind "$OSDK_INTEGRATION_IMAGE" popd +# todo: upgrade to use the 0.17.0 when the issue https://github.com/operator-framework/operator-sdk/issues/4284 be solved # Install OLM on the cluster if not installed. olm_latest_exists=0 if ! operator-sdk olm status > /dev/null 2>&1; then - operator-sdk olm install --version=0.17.0 + operator-sdk olm install --version=0.15.1 olm_latest_exists=1 fi @@ -38,7 +39,8 @@ go test -v ./test/integration header_text "Integration tests succeeded" +# todo: upgrade to use the 0.17.0 when the issue https://github.com/operator-framework/operator-sdk/issues/4284 be solved # Uninstall OLM if it was installed for test purposes. if eval "(( $olm_latest_exists ))"; then - operator-sdk olm uninstall --version=0.17.0 + operator-sdk olm uninstall --version=0.15.1 fi