1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

descheduler v0.31: update e2e test versions

Signed-off-by: Amir Alavi <amiralavi7@gmail.com>
This commit is contained in:
Amir Alavi
2024-08-28 23:04:49 -04:00
parent 4e4c5f79fb
commit 0cf1fc906e
3 changed files with 5 additions and 5 deletions

View File

@@ -34,9 +34,9 @@ echo "DESCHEDULER_IMAGE: ${DESCHEDULER_IMAGE}"
if [ -n "$KIND_E2E" ]; then
# If we did not set SKIP_INSTALL
if [ -z "$SKIP_INSTALL" ]; then
K8S_VERSION=${KUBERNETES_VERSION:-v1.30.0}
K8S_VERSION=${KUBERNETES_VERSION:-v1.31.0}
curl -Lo kubectl https://dl.k8s.io/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.20.0/kind-linux-amd64
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.24.0/kind-linux-amd64
chmod +x kind-linux-amd64
mv kind-linux-amd64 kind
export PATH=$PATH:$PWD