Merge pull request #14099 from olemarkus/fix-upgrade-ab-ci-version

Specify the full url for CI versions in upgrade-ab tests
This commit is contained in:
Kubernetes Prow Robot 2022-08-06 23:46:17 -07:00 committed by GitHub
commit 82ec66a033
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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