From a1e1ab7f139dda818a7765906731a9437aa93b73 Mon Sep 17 00:00:00 2001 From: Andy Sadler Date: Tue, 13 Aug 2024 14:16:37 -0500 Subject: [PATCH] install ksctl during kubesaw deployment With [PR #1030] landing in toolchain-e2e, tests now will try to pair an open PR against toolchain-e2e with an open PR against [ksctl]. We're always going to run tests with the latest version of ksctl, so we should install it before deploying member-operator. [PR #1030]: https://github.com/codeready-toolchain/toolchain-e2e/pull/1030 [ksctl]: https://github.com/kubesaw/ksctl/ Signed-off-by: Andy Sadler --- hack/sandbox-development-mode.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hack/sandbox-development-mode.sh b/hack/sandbox-development-mode.sh index 7a00041d8f9..d50d78ee2a7 100755 --- a/hack/sandbox-development-mode.sh +++ b/hack/sandbox-development-mode.sh @@ -10,4 +10,5 @@ echo echo "Installing the Toolchain (Sandbox) operators in dev environment:" rm -rf ${TOOLCHAIN_E2E_TEMP_DIR} 2>/dev/null || true git clone --depth=1 https://github.com/codeready-toolchain/toolchain-e2e.git ${TOOLCHAIN_E2E_TEMP_DIR} -make -C ${TOOLCHAIN_E2E_TEMP_DIR} appstudio-dev-deploy-latest SHOW_CLEAN_COMMAND="make -C ${TOOLCHAIN_E2E_TEMP_DIR} appstudio-cleanup" +make -C ${TOOLCHAIN_E2E_TEMP_DIR} install-ksctl +make -C ${TOOLCHAIN_E2E_TEMP_DIR} appstudio-dev-deploy-latest SHOW_CLEAN_COMMAND="make -C ${TOOLCHAIN_E2E_TEMP_DIR} appstudio-cleanup" USE_INSTALLED_KSCTL=true