From 1453a7fbe586493efcf2436b309321228376b57c Mon Sep 17 00:00:00 2001 From: Ole Markus With Date: Sun, 7 Aug 2022 07:56:56 +0200 Subject: [PATCH] Specify the full url for CI versions in upgrade-ab tests CI builds are stored in a different bucket --- tests/e2e/scenarios/upgrade-ab/run-test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/scenarios/upgrade-ab/run-test.sh b/tests/e2e/scenarios/upgrade-ab/run-test.sh index dec7d93639..7c2b19e3e4 100755 --- a/tests/e2e/scenarios/upgrade-ab/run-test.sh +++ b/tests/e2e/scenarios/upgrade-ab/run-test.sh @@ -35,10 +35,10 @@ if [[ "$K8S_VERSION_B" == "stable" ]]; then K8S_VERSION_B=$(curl https://storage.googleapis.com/kubernetes-release/release/stable.txt) fi if [[ "$K8S_VERSION_A" == "ci" ]]; then - K8S_VERSION_A=$(curl https://storage.googleapis.com/k8s-release-dev/ci/latest.txt) + K8S_VERSION_A=https://storage.googleapis.com/k8s-release-dev/ci/$(curl https://storage.googleapis.com/k8s-release-dev/ci/latest.txt) fi if [[ "$K8S_VERSION_B" == "ci" ]]; then - K8S_VERSION_B=$(curl https://storage.googleapis.com/k8s-release-dev/ci/latest.txt) + K8S_VERSION_B=https://storage.googleapis.com/k8s-release-dev/ci/$(curl https://storage.googleapis.com/k8s-release-dev/ci/latest.txt) fi export KOPS_BASE_URL